AndreyT f8ab4773aa
Update C.c (#1211)
1. `()` function declarations are deprecated in modern C
2. `return 0` at the end of `main` is redundant in modern C
2022-01-19 21:20:21 -06:00

6 lines
65 B
C

#include <stdio.h>
int main(void) {
printf("Hello World\n");
}