#include <stdio.h> void main() { int a[5]={1,3,5,7,9}; int **p; p=&a[0]; printf("%d ",**p); system("pause"); }