Merge pull request #144 from wellviana/master

excluded "void" in function "main"
This commit is contained in:
Mike Donaghy
2015-04-12 13:31:16 -04:00

2
c/c.c
View File

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