#includestudio.h
int main()
{
int a[3] = {5,6,9};
int *p[3];
p=&a;
printf("%d", *p[0]);
}
The output of code is:

Posted on by