1 post
0
16
What’s the difference between: #include <stdio.h> int main(){ printf("hello world\n") return 0; } and #include <stdio.h> int main(void){ printf("hello world\n") return 0; } It’s just…