What is the problem with the following code ?
#include <stdio.h> int main(void) { printf(”Hello, World!”) return 0; }
It should include <stdio>, not `
<stdio>
The main function should return 1 for a correct execution
main
1
There is a semicolon missing after the printf
printf
Nothing, it's clean