What i know about pointers so far

pointers are used to point to the memory address of the variable that it references and must be de-referenced to access the actual information.
example
Type* pointer = variable
pointer would be equal to the address pointer = 012123203 or something crazy like that
but *pointer would be equal to the variable *pointer = variable

pointers are useful because they allow you to access the information stored in the variable without actually manipulating the variable

Privacy & Terms