Write a program to print Hello, This is my first program. in c programming language on latest C compiler
#include<studio.h>
int main()
{
printf("Hello, This is my first program.");
return 0;
}
int main()
{
printf("Hello, This is my first program.");
return 0;
}
Comments
Post a Comment