When * used for a data type, it is a pointer to that type. byte* - pointer to byte.
When used in a variable, it will dereference the pointer. The value of var3 is a pointer, and the value of *var3 is the byte (or any other type) that the pointer points to.
Guffa source share