vault backup: 2022-08-08 11:41:12

This commit is contained in:
Jet Hughes 2022-08-08 11:41:12 +12:00
parent 3ec695e47d
commit ae6443676a

View File

@ -44,4 +44,13 @@ names are allocated to emmory locations of declaration
### Arrays
- strings
-
- terminated by "\0"
- argc, argv[]
- length specified
- null terminated
- array of pointers
### Pointer arithmetic
- ++ move a pointer fowards in an array
- -- move a pointer back in an array
- these operations are "type aware" and increment (the pointer) by the size of the elements of the array