fork(2) download
  1. #include<stdio.h>
  2.  
  3. void foo(char *);
  4.  
  5. int main(){
  6. foo("ABCD EFGH");
  7. }
  8.  
  9. void foo(char *a)
  10. {
  11. if ((*a && *a) != ' ')
  12. {
  13. foo(a+1);
  14. putchar(*a);
  15. }
  16. }
  17.  
Runtime error #stdin #stdout 0.77s 2090692KB
stdin
Standard input is empty
stdout
Standard output is empty