answersLogoWhite

0

In continue statement,

we immediately continue next step through loop

In go to statement,

we go to in perfect label which we call.

User Avatar

Wiki User

12y ago

What else can I help you with?

Continue Learning about Engineering

What is the different between break and continue?

The break statement exits out of the smallest containing loop or switch-case statement. The continue statement transfers control to the next iteration of the smallest containing loop statement.


What is difference between problem oriented and machine oriented languages?

machine oriented language: A programming language designed for use on specific class of computers. problem oriented language: A language whose statement resemble terminology of the user. Thanks


Difference between break and continue statements in wml?

Break statements:-its terminates the current while or for loop and continue the program execution from the statement following the terminated.NOTE:-note that it is wmlscript syntax error to use the break statement outside of while or a for statements.example;Breakstatement:Break;Continue statement:-this statement terminate execution of a block of statementin while or for loop and continues execution of loop with the next iteration.note that the continue statement does not terminate the execution of loop and also is wmlscript syntax error to use the break statement outside of while or a for statements.-> in while loop, it jumps back to the condition.-> in for loop,it jumpsto the update expression.syntax:continuestatement:continue;


What is the difference between instruction and pseudo-instruction?

A pseudo-instruction : A symbolic representation in a compiler or interpreter. An instruction : a simple statement in any language that defines a task or computation etc.


Short note on structural programming and procedural programming?

There is no difference between procedural programing language & structure programing language.

Related Questions

What is difference between control statements and looping statements in c language?

differance between control statement and looping statement?


What is difference between basic command and statement?

difference between command and statement


What is the difference between bar scale and statement scale?

What is the difference between a bar scale and a statement scale


WHAT IS THE DIFFERENCE BETWEEN LANGUAGE AND COMMUNICATION I NEED RARE ANSWERS ONLY?

what is the difference between speech,language and communication??There is a huge difference between language and communication


What is the difference between continue and end in c language?

"end" is not a keyword. Due to this site won't allow you to type in punctuation in the question, I assume "}" be the end [of a loop].Take a deep breath: continue means go to } of the loop body. Yeah, GO TO, and } of a loop means "ready for the next iteration (indexing changing, condition checks, depends of the type of the loop) then GO TO { [of the corresponding } ]So, the difference is the codes between the continue statement to this } are not executed when continue is used. If continue is placed right before the end of the loop, then there is no difference at run time, but you may have "[WTH] is this statement doing here?!" from the readers of the code!Example:// skip printing "Yes" for every even timefor (int i = 1; i


What is the different between break and continue?

The break statement exits out of the smallest containing loop or switch-case statement. The continue statement transfers control to the next iteration of the smallest containing loop statement.


What are the difference between command and statement?

i am starving


What is difference between problem oriented and machine oriented languages?

machine oriented language: A programming language designed for use on specific class of computers. problem oriented language: A language whose statement resemble terminology of the user. Thanks


What is the difference gwbasic commands and statements?

difference between command and statement


Difference between scope statement and project charter?

The difference between a scope statement and a project charter is that a project charter acknowledges the projects existence and the scope statement defines the project objectives.


What is the difference between 'switch' statement and 'if' statement?

we can use switch statement in multiple time but in if statement we can not use multiple time


Difference between break and continue statements in wml?

Break statements:-its terminates the current while or for loop and continue the program execution from the statement following the terminated.NOTE:-note that it is wmlscript syntax error to use the break statement outside of while or a for statements.example;Breakstatement:Break;Continue statement:-this statement terminate execution of a block of statementin while or for loop and continues execution of loop with the next iteration.note that the continue statement does not terminate the execution of loop and also is wmlscript syntax error to use the break statement outside of while or a for statements.-> in while loop, it jumps back to the condition.-> in for loop,it jumpsto the update expression.syntax:continuestatement:continue;