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


      1 int aos();
      2 int hybrid_soa();
      3 int short_soa();
      4 
      5 int main(void)
      6 {
      7     aos();
      8     hybrid_soa();
      9     short_soa();
     10     return 0;
     11 }