Advertisements
Advertisements
प्रश्न
Explain continue and break statements with the help of suitable examples.
उत्तर
1. continue statement-the continue statement also neglects the statements after it in the Loop and transfers the control back to the starting of the loop for next iteration.
*operation of continue statement in a for loop.
*operation of continue statement in a while loop
*operation of continue statements in a do-while loop
do
2.Break statement:
The break statement neglects the statement after it in the loop and transfers the control outside the loop
*operation of break statement in a for loop
for(initialization;condition;inc/dec)
*operation of break statement in a while loop
while(condition)
*operation of break statement in a do-while loop
do
APPEARS IN
संबंधित प्रश्न
Write the output of following code:
#include<stdio.h>
int main()
{
int val = 1;
do{
val++;
++val;
}while(val++>25);
printf(“%d\n”,val);
return 0;
}
Write a program to validate whether accepted string is palindrome or not.
Write a program to find transpose of matrix without making use of another matrix.
Define structure consisting of following elements
1. student roll_no
2. student name
3. student percentage
Write a program to read records of 5 students of and display same.
State True or False with reason.
while(0); is an infinite loop.
WAP to print the sum of following series.
1+22+33+………+nn
Write a program to perform matrix multiplication by passing input matrix to the function and printing resultant matrix.
Write a program to display following pattern:
1
232
34543
4567654
567898765
WAP to print all possible combination of 1,2,3 using nested loops.
Write a program for finding sum of series 1+2+3+4+…….upto n terms.