0

I don't understand the difference between using a pointer and using a normal variable. I'm learning linked lists in class so the use of pointers seems more straightforward since pointers are used to go to the next node in the list, but I don't understand its more basic uses and I'm feeling stressed as it is something I should already understand but don't.

Konrad Rudolph
  • 530,221
  • 131
  • 937
  • 1,214
gr33kbo1
  • 303
  • 4
  • 5
  • 15

1 Answers1

0

The pointer is in itself just a "normal" variable that just so happens to store a level of indirection to another variable.

Paul Evans
  • 27,315
  • 3
  • 37
  • 54