c-first-steps

a C playground
Index Commits Files Refs README
the-c-programming-language/helloworld.c (79B)
   1 #include <stdio.h>
   2 
   3 int main(void) {
   4 
   5     printf("Hello world!\n");
   6 
   7     return 0;
   8 }