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 are far pointers?
What is class and object in c?
which one is highest Priority in c? a)=,b)+,c)++,d)==
du u know test pattern for robosoft? Plz share
1 Answers RoboSoft, TATA, Wipro,
What is dynamic dispatch in c++?
marge linklist
What are register variables? What are the advantage of using register variables?
What is #include stdio h and #include conio h?
What are enums in c?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300
can we execute the program with the object file
How to add two numbers with using function?