Single Choice Not Set

QHow many times "atnyla" is get printed?

#include<stdio.h>
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

Choose the Best Option

Click any option to instantly check if you're correct.

  • A Infinite times
  • B 11 times
  • C 0 times
  • D 10 times
Correct Answer

Explanation

Option C
No Previous Next Question

Share This Question

Challenge a friend or share with your study group.