2009-08-15, 02:19 PM
Well, it's a cheating way of doing it.
Since I'll eventually be using the char array to write to a file, just do this...
fwrite(myCharArray, 1, 7, MyFile);
fseek(MyFile, -7, SEEK_CUR);
//define a new char type, then fread it
Since I'll eventually be using the char array to write to a file, just do this...
fwrite(myCharArray, 1, 7, MyFile);
fseek(MyFile, -7, SEEK_CUR);
//define a new char type, then fread it
