fork download
  1. #include <stdio.h>
  2.  
  3. void elabora (char *z)
  4. {
  5. printf (z);
  6. }
  7.  
  8. int main (void)
  9. {
  10. elabora ("ciao\n");
  11. getchar ();
  12. return 0;
  13. }
Success #stdin #stdout 0.01s 1724KB
stdin
Standard input is empty
stdout
ciao