fork download
  1. #include<stdio.h>
  2. void rev(int n){
  3. if(n!=0){
  4. printf("%d",n%10);
  5. rev(n/10);
  6. }
  7.  
  8. }
  9. int main(){
  10. rev(234);
  11. return 0;
  12. }
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
432