→This is my first code in this blog, it is a simple program to print hello.
#include<stdio.h>
int main()
{
printf("Hello this is my first program");
return 0;
}
Output: Hello this is my first program
#include<stdio.h>
int main()
{
printf("Hello this is my first program");
return 0;
}
Output: Hello this is my first program
Comments
Post a Comment