What is the difference between break and continue?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
break: Exits the loop entirely.
continue: Skips the current iteration and proceeds to the next.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
break: Exits the loop entirely.
continue: Skips the current iteration and proceeds to the next.
| Is This Answer Correct ? | 0 Yes | 0 No |
break: Exits the loop entirely.
continue: Skips the current iteration and proceeds to the next.
| Is This Answer Correct ? | 0 Yes | 0 No |
what is the self-referential structure?
What does c mean in standard form?
Is c procedural or object oriented?
Write a program to compute the following 1!+2!+...n!
What extern c means?
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
What is the use of the sizeof operator?
Which of these statements are false w.r.t File Functions? i)fputs() ii)fdopen() iii)fgetpos() iv)ferror() A)ii B)i,ii C)iii D)iv
void main() { int a=1; while(a++<=1) while(a++<=2); }
What is 2c dna?
What is extern keyword in c?
What is pointer in c?