So today we will be seeing the first program that aLl might had know so leta get started so the programe
#include<conio.h>
#include<studio.h>
void main()
{
clrscr();
printf("hello world");
getch();
}
So in the above programme there are the header files the a main function in that there is a predefined function printf,clrscr and getch also the ; it to matters alot as it shows that it is an end of the line or command.so this is the simple discription of the program you can to make small programs.
#include<conio.h>
#include<studio.h>
void main()
{
clrscr();
printf("hello world");
getch();
}
So in the above programme there are the header files the a main function in that there is a predefined function printf,clrscr and getch also the ; it to matters alot as it shows that it is an end of the line or command.so this is the simple discription of the program you can to make small programs.
Comments
Post a Comment