a=0;
while(a<5)
printf("%d\n",a++);
how many times does the loop occurs?
a.infinite
b.5
c.4
d.6
Answer Posted / vignesh1988i
THIS LOOP OCCURS 5 TIMES. AT THE SIXTH TIME IT BECOMES FALSE
| Is This Answer Correct ? | 12 Yes | 2 No |
Post New Answer View All Answers
What is meant by high-order and low-order bytes?
Which is better between malloc and calloc?
What does sizeof int return?
what do u mean by Direct access files? then can u explain about Direct Access Files?
How can I recover the file name given an open stream?
What are the data types present in c?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
What are shell structures used for?
What are the three constants used in c?
What is break in c?
What is an endless loop?
Can you write a programmer for FACTORIAL using recursion?
What is %d used for?
Explain two-dimensional array.
What are the types of bitwise operator?