C Programming - Control Instructions - Discussion

Discussion Forum : Control Instructions - General Questions (Q.No. 1)
1.
How many times "IndiaBIX" is get printed?
#include<stdio.h>
int main()
{
    int x;
    for(x=-1; x<=10; x++)
    {
        if(x < 5)
            continue;
        else
            break;
        printf("IndiaBIX");
    }
    return 0;
}
Infinite times
11 times
0 times
10 times
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
142 comments Page 14 of 15.

Mahesh said:   1 decade ago
Thank you Srinivasa. S.

Srikanth said:   1 decade ago
Good answer srinivasa.

Dileep said:   1 decade ago
Thanks to all of you.

Amrita Roy. said:   1 decade ago
I agree with Sandeep.

Ajeet said:   1 decade ago
Thanks to everyone.

Manya said:   1 decade ago
Thank you Sandeep.

Disha said:   1 decade ago
Thanks to sandeep.

Samikshya said:   1 decade ago
thanks to everyone

Vignesh said:   1 decade ago
Thanks Srinivasa.

Narmada said:   1 decade ago
Thank you sayali.


Post your comments here:

Your comments will be displayed after verification.