Structure of a C program
C is a case sensitive programming language which means in C two variables named x and X will have different meanings. However, it is a free-form language which means any C statement can start in any column but end of each C statement must be marked with a semicolon (;). In addition, multiple statements can … Read more