What will be the output of the following code?
#includestdio.h
int main()
{
int i=5;
while(i--=0) printf("%d",i);
i=5;
printf("\n");
while(i--=0) printf("%i",i);
printf("\n");
while(i--=0) printf("%d",i);
printf("\n");
return 0;
}




Posted on by