1.Header files: contains ready made functions prototypes or declarations or signature. Declaration of function indicates how many arguments and what type of arguments we have to send to the function and what it returns.
2.printf(): it is a function to display something on the monitor
3.getch(): it is also a function which reads a character from key board
4.clrscr(): it is a functoon which clears the screen
5.Basic input/output method: scanf for taking input from keyboard and printf is for displaying on monitor
6. variable declaration: int a, b,c;
The above is a variable declaration statement which allocates memory for three integer type variables a,b,c. Here, int indicates type of variable and while a,b,c are names of variables. We have other type of variables such as float, char, long, double etc.
7. variable initialization