#include #include int main(void) { char *str[] = {"abc","def","ghi"}; char *p; p = str[1]; printf("%s",p + 1); }