Subject Name:Data Structure Using C: Content of This Presentation Has Been Taken From Book
Subject Name:Data Structure Using C: Content of This Presentation Has Been Taken From Book
2) char *str;
3) float *x,*y;
Initialization of Pointers
Or
int amount=10,*ptr=&amount;
Here, the integer pointer variable ptr is initialized with
the address of integer variable amount.
1.3 ACCESSING VARIABLES USING POINTERS