-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Add following to compiler
- declare pointers (e.g., int*x;)
- address operator (e.g., x = &y;)
- dereference operator (e.g., int z = *x;)
- declare arrays (e.g., int a[3] = {1, 2, 3};)
- subscript operator (e.g., b = a[1]; a[2] = c;)
- pointer arithmetic (e.g., x++; ++x; x + 1;)
- Array to pointer decay (e.g., assert(a + 2 == a[2]); x = a + 1; z = *a;)
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request