Merge pull request #111 from mlang/master

Use puts instead of printf.
This commit is contained in:
Mike Donaghy
2014-06-20 02:09:14 -04:00

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;
}