fork download
  1. /*---------------------------------------------------*/
  2. /* */
  3. /*Homework: exercise 1 */
  4. /* */
  5. /*Name:Michaela */
  6. /* */
  7. /*Class: C Programming */
  8. /* */
  9. /*Date: */
  10. /* */
  11. /*Description: Exercise one with homework header */
  12. /*---------------------------------------------------*/
  13.  
  14. #include <stdio.h>
  15. int main ( )
  16. {
  17.  
  18. printf ("HELLO \nWORLD \n");
  19. return (0);
  20.  
  21. } /* main */
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
HELLO 
WORLD