first problem


Submit solution

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

Authors:
Problem type
Allowed languages
C

Task: print "Hello World"

sample input:

no input

sample output:

Hello World


Comments


  • 1
    kunisetti_nishnath  commented on May 4, 2023, 2:58 p.m.

    include<stdio.h>

    int main() { printf("Hello World"); return 0; }


  • 1
    CBENU4CSE20427  commented on June 8, 2021, 12:34 a.m.

    include <stdio.h>

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

    return 0;

    }