+ 1
Explain the code .
Help //code Static int a[]={10,20,30,40,50}; static int *p[]={a,a+3,a+4,a+1,a+2}; int **ptr=p; ptr++; printf("%d %d",ptr-p,**ptr);
6 Réponses
0
Static int a[]={10,20,30,40,50};
static int *p[]={a,a+1,a+2,a+3,a+4};
int **ptr=p;
ptr++;
printf("%d %d",ptr-p,**ptr);
0
Okie thank you now explain code
0
Sure Thanks