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 can I open a file so that other programs can update it at the same time?
Whats s or c mean?
What is operator promotion?
Can a program have two main functions?
What is wrong with this program statement? void = 10;
Write a program with dynamically allocation of variable.
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
What is the heap?
Is it better to bitshift a value than to multiply by 2?
Why n++ execute faster than n+1 ?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
Where register variables are stored in c?
What is the purpose of main( ) in c language?
Give the rules for variable declaration?
What does c mean before a date?