Home » Categories » C » How many times will the printf statement b...
How many times will the printf statement b...
0
How many times will the printf statement be executed in following.

main( )
{
unsigned int i=3;
while( i >=0 )
printf( "%d", i--);
}


a.0
b.3
c.4
d.Infinite
 
Asked By : Hari Categories : CProgrammingTechnical
  Answer:   d. Infinite
Post Your Answer
Previous Question
Next Question
Related Questions