diff options
Diffstat (limited to 'notes')
-rw-r--r-- | notes | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -0,0 +1,10 @@ + +Can use 'const' in function parameters to indicate to the compiler that a +variable will not be modified. + +The order of evaluation (function calls) in an expression is undefined. Eg: + + push(pop() + pop()) is ok + push(pop() - pop()) is NOT ok + + |