Basic Structure of c program
1.Header file [#include<stdio.h> , conio.h , math.h , string.h] #incluide<stdio.h:- This command is a preprocessor directive in c which contain all standard input and output files before compile any c program.2.Global variable3.main()4.{5.Local variable6.Body/Statement7.} ❶ Header file This is a collection of files that contains many functions. ✪ Stdio.h This also known as … Read more