Hello, but due to my programming skills lacking "skill", I have no clue how to, if, it is possible for the program, when running, to produce a separate .txt document...
For instance, I would like to accomplish
-Records everything you put into it
-Stretch out the output (explanation below) *
* Where fputs, it seems only a limited amount before Word Wrap comes in and distorts it, would like to see if:
1 2
fputs ("Log was sucessfully
constructed",pFile);
Without breaking it,
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
int thirdMain()
{
system("PAUSE");
FILE * pFile;
pFile = fopen ("Datalog.txt","w+");
if (pFile!=NULL)
{
fputs ("Log was successfully constructed",pFile);
fputs ("Test 01",pFile);
fclose (pFile);
}
system("PAUSE");
return 0;
}