C Language - C Jumping Statements
Questions No: 1/5

Which control statement allows you to skip the remaining code inside a loop for the current iteration and proceed to the next iteration?

Questions No: 2/5

What is the role of the break statement in a loop?

Questions No: 3/5

What happens if you use a break statement inside a nested loop?

Questions No: 4/5

Which keyword is used to come out of a loop only for that iteration?
उस पुनरावृत्ति के लिए केवल लूप से बाहर आने के लिए किस कीवर्ड का उपयोग किया जाता है?

Questions No: 5/5

What is the difference between break and continue statements in loops?