fork download
  1. #include <stdio.h>
  2. void f1(int a)
  3. {
  4. if(a>0) f1(a/2);
  5. printf("%d",a%2);
  6. }
  7. int main(){
  8. f1(12345);
  9. return 0;
  10. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
011000000111001