Files
C-Projects/HelloWorld.c
2021-04-25 15:28:50 +05:30

5 lines
79 B
C

// WAP to print "Hello World!".
void main() {
printf("Hello World! \n");
}