Merge pull request #182 from loctauxphilippe/patch-1

printf - I believe this is the most common way of accomplishing this
This commit is contained in:
Mike Donaghy
2015-04-13 20:20:06 -04:00

2
c/c.c
View File

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