다음 C 프로그램의 출력 결과를 쓰시오.
#include <stdio.h>
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("%d\n", p->age);
}이 문제는 풀이 화면에서 직접 실행해 풀 수 있어요.
꿈라CBT