Hi.
I have this codeline:
fprintf(file, "The\necake\nis\na\nlie");
When I compile and run in Linux it outputs nicely like so:
The
cake
is
a
lie
but when I compile and run in Windows (Vista), using cygwin, the newline doesn't work and output is like this:
Thecakeisalie
Anybody have an idea why?