
1. `()` function declarations are deprecated in modern C 2. `return 0` at the end of `main` is redundant in modern C
6 lines
65 B
C
6 lines
65 B
C
#include <stdio.h>
|
|
|
|
int main(void) {
|
|
printf("Hello World\n");
|
|
}
|