Break statement can be simulated by using 1. go to 2. return 3. exit 4. both return and exit

Questions by Rujul   answers by Rujul

Showing Answers 1 - 30 of 30 Answers

jintojos

  • Jun 10th, 2008
 

The Break statement can be simulated by using the "goto" statements.
The exit statement is used for exiting the program and the return statement is for returning to the calling function. So by using the "goto" statement  we can change the execution flow and that is the use of goto statement  ......

  Was this answer useful?  Yes

ahammedsadhik

  • Jun 28th, 2013
 

return to the next executive statement

  Was this answer useful?  Yes

bharathireddy

  • Oct 1st, 2014
 

goto

  Was this answer useful?  Yes

Deep

  • Mar 4th, 2015
 

Go to

  Was this answer useful?  Yes

Bayapu

  • Mar 10th, 2015
 

Goto is the answer, it can simulate break.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions