First Problem


Submit solution

Points: 10 (partial)
Time limit: 2.0s
Memory limit: 64M

Author:
Problem type
Allowed languages
C

TASK: Print "Hello World!"

Sample Input:

No Input

Sample Output:

Hello World!


Comments


  • 0
    cbenu4cse22448  commented on May 9, 2023, 3:09 p.m.

    include<stdio.h>

    int main() { printf("Hello World!");

    return 0; }


  • 0
    sachin  commented on Sept. 15, 2022, 4:01 p.m.

    include<stdio.h>

    int main(){ printf("hello world!"); }