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 does the c preprocessor do?
What is the benefit of using #define to declare a constant?
write a program for the normal snake games find in most of the mobiles.
What are header files in c?
What is cohesion in c?
What is difference between class and structure?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
What is the difference between the = symbol and == symbol?
Is c pass by value or reference?
string reverse using recursion
What is C language ?
How can I avoid the abort, retry, fail messages?