/* test105.c L. Stewart February 15, 1982 5:58 PM */ /* structure references */ struct myf { int foo, bar; }; struct myf *myfp; main() { myfp->bar += 1; };