프로그래밍 언어 활용난도 중상
19번 · 주관식 · 5점
다음 C 프로그램의 실행 결과를 쓰시오.
#include <stdio.h>
struct Item {
int price;
int count;
};
int main(void) {
struct Item item = {4, 5};
struct Item *p = &item;
printf("%d", p->price * p->count);
return 0;
}