diff options
author | bnewbold <bnewbold@robocracy.org> | 2011-03-04 18:40:07 -0500 |
---|---|---|
committer | bnewbold <bnewbold@robocracy.org> | 2011-03-04 18:40:07 -0500 |
commit | ce9248385c8d02141fb9eee7ea14894d4f323686 (patch) | |
tree | 1a2476301c90686ddb9095227e45abacb646e3fb /notes | |
parent | d5e1adf060a23e6c739d0dd78fe9321fb0eb7582 (diff) | |
download | learning_c-ce9248385c8d02141fb9eee7ea14894d4f323686.tar.gz learning_c-ce9248385c8d02141fb9eee7ea14894d4f323686.zip |
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 + + |