fork(1) download
  1. #include <stdio.h>
  2.  
  3. int drucke(char* text)
  4. {
  5. printf("%s", text);
  6. return 0;
  7. }
  8.  
  9. int main(void) {
  10. int i;
  11.  
  12. i=drucke("Hello Bulme\n");
  13. printf(" %d",i);
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 2156KB
stdin
Standard input is empty
stdout
Hello Bulme
 0