c-first-steps

a C playground
Index Commits Files Refs README
   1 //    Exercise 1-1, Run the "hello, world" program.
   2 
   3 #include <stdio.h>
   4 
   5 int main( void ) {
   6 
   7     printf("Hello, world\n");
   8 
   9     return 0;
  10 }