struct _st { int num; char * name; }; struct _st (*f2(void))[3] { static struct _st a[2][3] = {{{1,"KIM"}, {2,"SONG"}, {3, "KI"}}, {{4, "KANG"}, {5, "PARK"}, {6, "LEW"}}}; return a; } struct _st (*f1(int num)) { return f2()[num]; } void main(void) { // ARK부터 출력하기 printf("%sn", (f1(0)+3)[1].name + 1 ); }