fork download
  1. /*
  2.  
  3. * Author: Brady Moore
  4.  
  5. * Date Written: 08/24/16
  6.  
  7. * Course: CMPSCI235
  8.  
  9. * Instructor: Dr. McFarland
  10.  
  11. * Program Name: HelloWorld.c
  12.  
  13. * Description: My First C program that says Hello To the World
  14.  
  15. */
  16.  
  17. #include <stdio.h> // Needed to perform IO operations
  18.  
  19. int main()
  20.  
  21. { // Program entry point
  22.  
  23. printf("Hello, world!\n"); // Says Hello
  24.  
  25. return 0; // Terminate main()
  26.  
  27. } // End of main()
Success #stdin #stdout 0s 3468KB
stdin
Standard input is empty
stdout
Hello, world!