The ones who are crazy enough to think they can change the world are the ones who do.- Steve Jobs
Increment operator ++ is used to adds 1 to the variable or operand. Decrement operator is used to subtracts 1 from the variable or operand. These increment and decrement operators can be used in two forms prefix and postfix.
#include<stdio.h> int main() { int a = 4; a++; //Postfix increment ++a; //prefix increment a--; //Postfix decrement --a; //prefix decrement printf("The value of a is : %d ",a); return 0; }
Refer For More C Control Statements
Refer For More C Control Loop
Though break statement comes under decision-making statement, its most oftenly using in looping. One can use the break statement to break out from a loop or switch statement. When break is executed within a loop, the loop ends immediately, and execution continues with the first statement following the loop. Refer For More C Break Statement
The continue statement enables you to skip to the next iteration in the loop containing the continue statement. The labeled continue statement enables you to skip to the next iteration in an outer loop enclosing the labeled continue that is identified by the label. The labeled loop need not be the loop immediately enclosing the labeled continue. Refer For More C Continue Statement
We may make mistakes(spelling, program bug, typing mistake and etc.), So we have this container to collect mistakes. We highly respect your findings.
© Copyright 2019