+ 2
Char *ptr= "how can string store in pointer variable";
Explain me how can we store string in pointer variable and access them in c language???
2 Respuestas
+ 4
*ptr=a
For example consider that a is stored in the memory location 2000.
The ptr will point the address 2000 for getting a.
I hope u understand 😁
+ 1
kk