summaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
authorPeter Wu <lekensteyn@gmail.com>2011-11-30 09:56:50 +0000
committerPeter Wu <lekensteyn@gmail.com>2011-11-30 09:56:50 +0000
commita62cbd3e76c0e937b224158a206fe343a9c4d2eb (patch)
tree67f6b6349ccc743e74660f52950004665181e3a8 /TODO
parent8f0749764335c2196933ce0847f1551bf4a556b9 (diff)
downloadpp2cc-a62cbd3e76c0e937b224158a206fe343a9c4d2eb.tar.gz
Support for array declaration and initialization
Diffstat (limited to 'TODO')
-rw-r--r--TODO4
1 files changed, 3 insertions, 1 deletions
diff --git a/TODO b/TODO
index 5c7c490..0e74c12 100644
--- a/TODO
+++ b/TODO
@@ -9,6 +9,8 @@ Indirection, address and pointers in general
Arrays (definition and use)
int x;
-int a[2] = {1, 2];
+int a[2] = {1, 2};
a[2] = 2;
x = a[2]
+
+Function calls with arguments