Please look to my code:
void PruefdatenSpeichern(void)
{
input2 = fopen (file, "a");
strcpy (w, p); //p = the string with my system time
strcpy (message5, "/n"); // /n as a string
strcat(w , message5); //add /n to the and of my string
fputs (w, input2); //write into my file
fclose (input2); //close file
}
This code did not write in a new line!
The write code was edit by me with the editor!!!
I looked at the file with the Microsoft Editor.
Can you help me, what I do wrong?
Tanks