changes.mady.by.user Joseph C. Sible
Saved on Jun 02, 2022
...
Calling f() will print 2 if you compile with -O0, but will print 3 0 if you compile with -O2.
f()
2
-O0
3
0
-O2