First Problem
Submit solution
C
Points:
10 (partial)
Time limit:
2.0s
Memory limit:
2M
Author:
Problem type
Allowed languages
TASK:
Print "Hello World!"
Sample Input:
No Input
Sample Output:
No Output
This problem has no inputs required
Comments
include <stdio.h>
int main() { printf( "Hello World!" ); return 0 ; }
include <stdio.h>
int main() { printf("Hello World");
}