line-feeds

Carriage return required when printing to the console in Windows?

It seems like just putting a linefeed is good enough, but I know it is supposed to be carriage return + line feed. Does anything horrible happen if you don't put the carriage return and only use line feeds? This is in ANSI C and not going to be redirected to a file or anything else. Just a normal console app. ...

What is the difference between "\r" and "\n"?

Possible Duplicate: What is the difference between \r and \n? I understand that it's different for each Operating System, for example, "\r\n" may be expected in Windows, "\n" may be expected in Unix and "\r" may be expected in Macs. What are the differences between these two (or three, if you want to include "\r\n") escape se...