summaryrefslogtreecommitdiffstats
path: root/notes
blob: 8c4954c5a3910fb1b462a906a6abc748845982a1 (plain)
1
2
3
4
5
6
7
8
9
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