hello world program in c
hello world program in c
In today’s article we are going to see hello world program in c
hello world program in c
#include<stdio.h>
#include<conio.h>
int main()
{
printf(“hello world !”);
return 0;
}
output
hello world!
hello world program in c
In today’s article we are going to see hello world program in c
#include<stdio.h>
#include<conio.h>
int main()
{
printf(“hello world !”);
return 0;
}
hello world!
Post a Comment