summaryrefslogtreecommitdiffstats
path: root/notes
diff options
context:
space:
mode:
authorbnewbold <bnewbold@robocracy.org>2011-03-04 18:40:07 -0500
committerbnewbold <bnewbold@robocracy.org>2011-03-04 18:40:07 -0500
commitce9248385c8d02141fb9eee7ea14894d4f323686 (patch)
tree1a2476301c90686ddb9095227e45abacb646e3fb /notes
parentd5e1adf060a23e6c739d0dd78fe9321fb0eb7582 (diff)
downloadlearning_c-master.tar.gz
learning_c-master.zip
backup of stuffsHEADmaster
Diffstat (limited to 'notes')
-rw-r--r--notes10
1 files changed, 10 insertions, 0 deletions
diff --git a/notes b/notes
new file mode 100644
index 0000000..8c4954c
--- /dev/null
+++ b/notes
@@ -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
+
+