A Simple C Program
#include<stdio.h>
#include<conio.h>
void main( )
{ clrscr();
printf("hello, world");
getch();
}
Explanation: First two linens are header files.then starts the program (void main.).clrscr();-the full meaning is clear screen..then the printf-means this will print the writing into the two - " " .at the end getch();
#include<stdio.h>
#include<conio.h>
void main( )
{ clrscr();
printf("hello, world");
getch();
}
Explanation: First two linens are header files.then starts the program (void main.).clrscr();-the full meaning is clear screen..then the printf-means this will print the writing into the two - " " .at the end getch();
No comments:
Post a Comment
Please comment bellow. Share your knowledge