C Control Statements
Type Casting
Type casting allows us to convert one data type into other. In C language, we use cast operator for type casting which is denoted by…
C continue
The continue statement in C language is used to continue the execution of loop (while, do while and for). It is used with if condition…
C for loop
The for loop in C language is also used to iterate the statement or a part of the program several times, like while and do-while…
C while loop
The while loop in C language is used to iterate the part of program or statements many times. In while loop, condition is given before…
C do while loop
To execute a part of program or code several times, we can use do-while loop of C language. The code given between the do and…