In C, everything we write comes under a statement. A C program contains many number of statements. These are the building blocks of your C program.
Every Statement is ended up with a semicolon(;) except for the directives i.e., declared with the pre-processor (#).
For example,
Every Statement is ended up with a semicolon(;) except for the directives i.e., declared with the pre-processor (#).
For example,
x=2+3;is a normal statement which adds up the values 2 and 3 and place the resulting value into the variable x.