boot2

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

008-pointer-deref.c (73B)


      1 int f(int *p) { return *p; }
      2 int main(void) { int x = 7; return f(&x); }