fork download
  1. /************************\
  2. |* This code written by *|
  3. |* the brilliant *|
  4. |* Dan Gookin *|
  5. \************************/
  6. #include <stdio.h>
  7.  
  8. //************** MAIN FUNCTION **************//
  9. int main()
  10. {
  11. /* These puts() statements send text to
  12.   the standard output device */
  13. printf("I'm a computer!");
  14. printf("Thrilled to meet you!");
  15.  
  16. /* I give nothing back to the OS */
  17. return(0);
  18. }
  19.  
  20. //===========================================//
  21. // END //
  22. //===========================================//
  23.  
Success #stdin #stdout 0s 4368KB
stdin
Standard input is empty
stdout
I'm a computer!Thrilled to meet you!