user1162715
user1162715

Reputation:

What is a pointer? Like literally, what is it?

I know what pointers do, that they point to a specific memory location. But what is the actual thing that is pointing to that memory location?

Upvotes: 2

Views: 127

Answers (1)

EClaesson
EClaesson

Reputation: 1618

A pointer is an integer holding the memory address to whatever it points to.

Upvotes: 9

Related Questions