summaryrefslogtreecommitdiff
path: root/TODO
blob: 0e74c12e427e7dca1fdd049666148fcce9dbca7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Support for other assignment operators:
/= *= += -= %= <<= >>= |= &= ^=

Post decrement/increment operators:
p-- p++

Indirection, address and pointers in general
*x &x x.y x->y

Arrays (definition and use)
int x;
int a[2] = {1, 2};
a[2] = 2;
x = a[2]

Function calls with arguments