Char *a, b; // what is the type of a
Character pointer
Char *a, b; // what is the type of b
Char (not a pointer)
Short *ps = 0x304; // ps address is at 0x300.
ps[0] is what address?
0x304
Short *ps = 0x304; // ps address is at 0x300.
ps[3] is at what address?
0x310
Short *ps = 0x304; // ps address is at 0x300.
What is the value of the ps?
0x304
Short *ps = 0x304; // ps address is at 0x300.
What is the value of ps+1?
0x306
Short *ps = 0x304; // ps address is at 0x300.
What is the value of ps+3?
0x310
Short *ps = 0x304; // ps address is at 0x300.
What address of memory is changed by this stmt: *(ps+3) = 0xdead;
ps[3] // since *(x+n) == x[n]