C Pointers


C Pointer Operators

 

<type> * variable type declaration: variable is a pointer to <type>
 
&variable address of variable
 
*ptrVar dereference: value that ptrVar points to

 


Alyce Brady, Kalamazoo College