C++程序  |  9行  |  71 B

struct foo {
  int i;
};

void func() {
  struct foo *f;
  f->i = 3;
}