| 319 | |
| 320 | |
| 321 | ==== Operators to access to memory ==== |
| 322 | |
| 323 | || Operator || Description || Example || Result || |
| 324 | || & || Address of || &x || A constant pointer to '''x''' || |
| 325 | || * || Indirection || *p || The value (or the function) pointed by the '''p''' address || |
| 326 | || [ ] || Element of array || [x]i || *(x+i), the index element '''i''' in the array '''x''' || |
| 327 | || . || Member of a structure or union || s.x || The member with name '''x''' in the structure or union '''s''' || |
| 328 | || -> || Member of a structure or union || p->x || The member with name '''x''' in the structure or union pointed by '''p''' || |