Miroslaw Pawlowski
Results
1
comments of
Miroslaw Pawlowski
``` { struct A; struct B { A *a; }; struct A { int r; }; B b; if (b.a) b.a->r = 0; } ``` And the above code does...