answersLogoWhite

0

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.

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

How do you use a C-continue statement in a block- without any looping or conditional statements?

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.


Difference between goto and continue statement in c language?

In continue statement, we immediately continue next step through loop In go to statement, we go to in perfect label which we call.


What is the use of continue in c?

Continue statement is used to take the control to the begining of the loop in which it is used.


How do you use a c program-continue statement in a block not in a loop?

You can use it like an usual operator. Everything (in the same block) after continue will not be executed.


Why you use if and else statement in c language program?

There is no "elseif" statement in C. You can only use "else" and "if" separately. This is a good reason for switch/case/break.


Why you use semicolon to terminate the lines in C programming?

Because that is the defined statement terminator of the language.


How can write the name in c plus plus language without using cout statement?

I believe, you can use C-function - printf().


What is a statement in c language programme?

Any experssion including assignment or a function call can be a statement in C


Why you use colon in C language?

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.


How do you use a c program-continue statement in a block?

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.


Why you are use to c language?

I do use am a programmer, because C-language.


What is if-statement in c programming language?

One of the statements, obviously.