I've recently decided to learn c++ and things have been going along well, but I've hit a snag in the program I'm trying to write.
I've spent the last three days scouring the internet, reading documentation, reading help forums trying to figure out how to do what I want to do and none if it works. Any time I try to apply it to what I'm trying to do it doesn't work.
The first thing I want to do is set up an array of symbols
variabletype(?) variable [3] {"@","#","~"}
take variable[1] ("@")
and write it to a random access binary file file to a certain position in the file
then later, I want to be able to read that specific position and output it as a const char.
Well it took another hour of random trial and error playing the "guess which variable type wont convert to another character type" game...but... I think i've finally gotten it... Here's the code...