Single Choice
Not Set
QHow many times "atnyla" is get printed?
#include
int main(){
int x;
for(x=-1; x<=10; x++){
if(x < 5)
continue;
else
break;
printf("atnyla");
}
return 0;
}
ID: #1369
C Language Loop Control
2,297 views
Question Info
#1369Q ID
Not SetDifficulty
C Language Loop ControlTopic
Your Answer
Choose the Best Option
Click any option to instantly check if you're correct.
Correct Answer
Explanation
Option C
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic