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
Differentiate between a structure and a union.
What is the difference between the local variable and global variable in c?
Explain what is a static function?
When is a void pointer used?
which is an algorithm for sorting in a growing Lexicographic order
What is pointer in c?
what is recursion in C
What does the format %10.2 mean when included in a printf statement?
What is the difference between call by value and call by reference in c?
Explain what is the most efficient way to store flag values?
Describe the order of precedence with regards to operators in C.
What is structure in c definition?
Is it better to use a macro or a function?
Why does everyone say not to use gets?
What is extern variable in c with example?