In C continue stements are used inside the loops like for .while,do while .its a statement used in c language wher it tell the compiler to skip the following statement(statement or part of progm following continue)&continue with next iteration.it shud me noted that its diff from break statement wher the control of prog goes out of the particular loop.in case of for ,while ,or do loops when we use continue the rest of the loop will not me excecuted and it will go back to check the condition of the loop.
In the C language, the continue statement can only be used within a loop (for, while, or do). Upon execution, control transfers to the beginning of the loop.
In continue statement, we immediately continue next step through loop In go to statement, we go to in perfect label which we call.
Continue statement is used to take the control to the begining of the loop in which it is used.
You can use it like an usual operator. Everything (in the same block) after continue will not be executed.
There is no "elseif" statement in C. You can only use "else" and "if" separately. This is a good reason for switch/case/break.
Because that is the defined statement terminator of the language.
I believe, you can use C-function - printf().
Any experssion including assignment or a function call can be a statement in C
In C (and C++ and Java), the semicolon is used to mark the end of a statement. It is also used the separate the expressions in a for loop.
int f(int num) { int i; for (i = 0; i < 10; i++) { if (num > i) continue; printf("aaa"); } } printf will only be reached when i <= num.
I do use am a programmer, because C-language.
One of the statements, obviously.