cs205-lecture-examples

Example codes used during Harvard CS205 lectures
git clone https://git.0xfab.ch/cs205-lecture-examples.git
Log | Files | Refs | README | LICENSE

hello.c (133B)


      1 #include <stdio.h>
      2 
      3 int main(void)
      4 {
      5     // Comments are removed by the pre-processor
      6     printf("hello, world!\n");
      7     return 0;
      8 }