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

main.c (93B)


      1 #include <stdio.h>
      2 int f();
      3 
      4 int main(void)
      5 {
      6     printf("f() = %d\n", f());
      7     return 0;
      8 }