|
|
|
|
|
by lynx97
412 days ago
|
|
Nitpick: Almost all Hello World C examples are wrong. printf is for when you need to use a format string. Hello World doesn't. Besides: > puts() writes the string s and a trailing newline to stdout. int main() { puts("Hello World!"); } |
|