What's the difference between a pointer, and a pointer variable?

前端 未结 6 1560
执笔经年
执笔经年 2021-02-04 10:50

I know this is very basic but it is little bit confusing to me.
I\'ve read:

a pointer is nothing more than an address

6条回答
  •  时光取名叫无心
    2021-02-04 11:41

    pointer: a variable whose value is the address of another variable.

    pointer variable: is one that contains the location or address of memory where another variable, data value, or function is store.

提交回复
热议问题