Predict the output of the following program
#include stdio.h
void main()
{
int a=94,b=0;
while(a!=0)
{
b = b*10+a%10;
a=a/10;
}
printf("b = %d",b);
}


Posted on by