First C Program:
When we starting the c language programming we need to learn How it work Compile and Run the program C language.
Now we right First C language program:
#include<stdio.h> //Hearder file in c
#include<conio.h>
void main()
{
printf("Hello Word ");
getch();
}
#include <stdio.h> includes the standard input output library functions. The printf() and scanf() function is defined in stdio.h .
int main() The main() function is the entry point of every program in c programming language.
How to compile and run the c program:
The ways to compile and run the c program by menu.
Now click on the compile menu then compile sub menu to compile the c program.
Then click on the run menu then run sub menu to run the c program.