boot2

Playing with the boostrap
git clone https://git.ryansepassi.com/git/boot2.git
Log | Files | Refs | README

330-fs-compound-array.c (82B)


      1 int *p = (int[]){10,20,30,40};
      2 int main(void) { return p[0]+p[1]+p[2]+p[3]-100; }