Reference (&) vs Dereference (*) in C

This page explains pointers in details and can be very helpful:
http://www.cplusplus.com/doc/tutorial/pointers/

Two important points:

  • & is the reference operator and can be read as “address of”
  • * is the dereference operator and can be read as “value pointed by”

One thought on “Reference (&) vs Dereference (*) in C

Please Leave a Comment