Can anybody explain how its printing output as "ink"
- by giri
Hi
I am new to pointers in C. I know the basic concepts.In the below code how its printing the "ink" as output.
#include<stdio.h>
main()
{
static char *s[]={"black","white","pink","violet"};
char **ptr[]={s+3,s+2,s+1,s},***p;
p=ptr;
++p;
printf("%s",**p+1);
}
Thanks