Consider the following function: void f(unsigned int n) { do { putchar ('0' + (n % 10)) ; } while (n /= 10) ; putchar (' n') ; }
What is the output of f(837)?
Reveal answer
Fill a bubble to check yourself
Consider the following function: void f(unsigned int n) { do { putchar ('0' + (n % 10)) ; } while (n /= 10) ; putchar (' n') ; }
What is the output of f(837)?