printf is overkill. Nothing to format in that string. puts() is better suited.

This commit is contained in:
Eric Schaefer
2012-04-29 12:05:40 +03:00
parent 38f6567c5c
commit 38d0b74e20

2
c/c.c
View File

@@ -1,6 +1,6 @@
#include<stdio.h>
int main(void) {
printf("Hello World\n");
puts("Hello World");
return 0;
}