Statement
What is a statement? A statement is a command or instruction which is given to the computer to take a specific action on what to display on the screen or which input has to collect. A program is made up of a series of statements. Example: c=a+b //This is not a statement. //This is an expression. But when any expression is terminated by a semicolon (;) it is called a statement. Example: c=a+b ; //Now this is a statement. A program is made up of a set of instructions & statements. There are various types of statements but on its type of nature, we have classified it in 4 types. 1.Expression statements 2.Selection statements 3.Loop statements 4.Jump statements 1. Expression statements : most of the programs followed in C are the expression statement. An expression statement is simply an expression terminated by a semicolon (;) . It is the combination of operators and operands. You will learn in detail about operators in chapter o...