What is the output of the following program?
#include
void f(unsigned int i)
{
if(i/10 != 0)
f(i/10);
printf("%i",i%10);
}
int main()
{
f(123);
return 0;
}
1
123
2
-123
3
10
4
7