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 (132B)


      1 int f();
      2 int g();
      3 
      4 int main(void)
      5 {
      6     int ary[] = {1, 2, 3, 4};
      7     int a = f(ary, 4);
      8     int b = g(ary, 4);
      9     return a + b;
     10 }