fork download
  1. #include <stdio.h>
  2.  
  3. void rev(int n){
  4. if(n!=0){
  5. printf("%d",n%10);
  6. rev(n/10);
  7. }
  8. }
  9.  
  10. int main(void) {
  11. rev(4567);
  12. // your code goes here
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0.01s 5276KB
stdin
Standard input is empty
stdout
7654