15. 다음은 C언어 프로그램이다. 실행 결과를 쓰시오.
#include struct good { char name[10]; int age; }; void main(){ struct good s[] = {"Kim",28,"Lee",38,"Seo",50,"Park",35}; struct good *p; p = s; p++; printf("%s\n", p-> name); printf("%s\n", p-> age); }
정답 확인 | 맞췄어요 O | 틀렸어요 X |