void main()
{
static int a[]={ 0,1,2,3,4}; // if here static removed that hence error why?
int *p[]={ a,a+1,a+2,a+3,a+4};
int **ptr=p;
clrscr();
printf(" base address is %u",a);
ptr++;
getch();
}
in above code in "staic int a[] " line integer array define as static why it need?