WAP to print "Hello World" in C

 #include<stdio.h>

main()

{

printf ("Hello World");

}


Comments