What is the datatype of pointer in c?

后端 未结 6 2026
别那么骄傲
别那么骄傲 2021-02-04 08:56

are pointers of integer or unsigned datatype?

6条回答
  •  广开言路
    2021-02-04 09:50

    int *p;

    data type of *p is pointer. And it points to integer type variable. It stores address in hexadecimal format.

提交回复
热议问题