Hai,
I've been fiddling around with char, char* and string and thoroughly confusing myself as to what the actual differences are but all in all, I couldn't seem to figure out a way to edit a string/char/char* to do something like this automatically:
"File1.txt"
"File2.txt"
"File3.txt"
etc.
None of the string combination help I can find seems to work properly in VC++ and nothing my BASIC/C++ knowledge tells me should work, works (like the following):
int num=12;
char* cnum[3];
cnum=str(num);
filename = "File" << cnum << ".txt";
I mean, in my world... that should make "File12.txt" :( xD
Anyone wanna tell me how much of a noob I am? :D! (Oh yeh, and how to do it properly)