An array which stores pointer variables of same type as its data elements is called array of pointer. In other words, we can say that array of pointer stores memory address of different variables of same type.
एक अरे जो उसी प्रकार के पॉइंटर वेरिएबलस को डाटा एलेमेंट्स के रूप में रखता है अरे ऑफ़ पॉइंटर कहलाता है। दुसरे शब्दों में अरे ऑफ़ पॉइंटर के द्वारा उसी प्रकार के वेरिएबल्स का मेमोरी एड्रेस रखा जाता है।
Syntax :-
datatype_name *array_name[size];
Example :-
#include<stdio.h>
#include<conio.h>
void main(){
float a=7.8, b=13.5, c=78.3, *ptr [3];
ptr[0]=&a;
ptr[1]=&b;
ptr[2]=&c;
clrscr();
printf("accessing values of a, b, c through array of ptr\n");
printf("a = %. 2f\n",*ptr[0]);
printf("b=%.2f\n",*ptr[1]);
printf ("c=%.2f\n",*ptr[2]);
getch();
}
No comments:
Post a Comment