Embed presentation
Download to read offline











Pointers are special variables that store memory addresses and can be used to indirectly access the value of another variable. Pointers point to the first byte of whatever it is referencing and are declared using an asterisk next to the variable type, such as int *ptr. Important points about pointers are that they store addresses, point to the first byte, and the type must match the data being pointed to.










