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