Hello world/Newline omission: Difference between revisions

m
({{header|C}})
Line 15:
 
=={{header|C}}==
 
In C, we do not get a newline unless we embed one:
 
<lang c>#include <stdio.h>
 
int main(int argc, char *argv[]) {
(void) printf("Goodbye, World!"); /* WeNo don'tautomatic get newlines unless we embed themnewline */
return EXIT_SUCCESS;
}</lang>