C Programming Language MCQ C Language Loop Control
⚠ Report ✓ Question Verified Copy Link
#include int main() { int x; for(x=-1; x<=10; x++) { if(x < 5) continue; else break; printf("atnyla"); } return 0; }
Learn More MCQ Questions from C Programming Language MCQ C Language Loop Control