Hello World
C Language Exercise for Balaji.
Hello World Program
#include<stdio.h>
int main()
{
printf("Hi Balaji");
}
Explanation:
#include<stdio.h>
This is the header file for standard input output without this printf wont work.
int main()
{
//write code here
}
{
//write code here
}
Comments
Post a Comment