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
In C programming, what command or code can be used to determine if a number of odd or even?
difference between object file and executable file
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
In which language linux is written?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
Explain what are linked list?
How to Throw some light on the splay trees?
what are enumerations in C
What is keyword with example?
In c language can we compile a program without main() function?
How arrays can be passed to a user defined function
How do you view the path?
Explain what are header files and explain what are its uses in c programming?
can we implement multi-threads in c.
How can a number be converted to a string?