Hello World in C

#include<stdio.h>
int main()
{
    printf("Hello World");
    return 0;
}




OUTPUT : 




Post a Comment

0 Comments