summaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
Diffstat (limited to 'TODO')
-rw-r--r--TODO15
1 files changed, 15 insertions, 0 deletions
diff --git a/TODO b/TODO
index a5d5ecc..9d28b80 100644
--- a/TODO
+++ b/TODO
@@ -2,3 +2,18 @@ Post decrement/increment operators:
p-- p++
x.y x->y
+
+Array support:
+int a[][2] = {{1, 2}, {3, 4}};
+int b[1][2];
+int *c[2];
+a[1][1];
+c[0] = &x;// where int x = 1;
+int *p = a[0];// points to address of first element
+int x = *a[0];// equals *(a[0])
+
+static variables in functions
+
+Type checking
+
+pointer functions