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 / sruthi
answer is b
| Is This Answer Correct ? | 9 Yes | 1 No |
Post New Answer View All Answers
How to get string length of given string in c?
What is the difference between the expression “++a” and “a++”?
What does static variable mean in c?
Can the size of an array be declared at runtime?
Why doesnt the call scanf work?
What is typedef?
What is the use of gets and puts?
What is the purpose of the statement: strcat (S2, S1)?
Why can’t we compare structures?
#include
What is graph in c?
Differentiate between new and malloc(), delete and free() ?
What is pointer to pointer in c?
Tell me is null always defined as 0(zero)?
Write a program to use switch statement.