#include<stdio.h> void main() { char *s[]={"one","two","three"},**p; p=s[1]; printf("%c %c\n",*(p+1),*p+1); }