Computer Science, asked by Anonymous, 10 months ago

pointer variable can be assigned the value of another pointer variable. int*ptr,*sptr;*ptr=&a;*sptr=*ptr;​

Answers

Answered by Dheerajnaik46257
2

A pointer is a variable that stores a memory address. ... int * ptr; // ptr is now a pointer-to-int // Notation: // ptr refers to the pointer itself ... There is a special pointer whose value is 0.

Similar questions