Skip to content

Commit

Permalink
printf is overkill. Nothing to format in that string. puts() is bette…
Browse files Browse the repository at this point in the history
…r suited.
  • Loading branch information
Eric Schaefer committed Apr 29, 2012
1 parent 38f6567 commit 38d0b74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion c/c.c
@@ -1,6 +1,6 @@
#include<stdio.h>

int main(void) {
printf("Hello World\n");
puts("Hello World");
return 0;
}

0 comments on commit 38d0b74

Please sign in to comment.