chapter 17) 구조체 포인터의 사용
#include struct score{ int kor,eng,math; }; int main(void){ struct score yuni = {90,80,70}; struct score *ps = &yuni; printf("kor : %d\n", (*ps).kor); printf("eng : %d\n", ps -> eng); printf("math : %d\n", ps -> math); return 0; } ### 구조체 정의 - `struct score`는 세 과목의 점수를 정수형으로 저장하는 구조체입니다. 각 멤버 변수 `kor`, `eng`, `math`는 국어, 영어, 수학 점수를 나타냅니다. ### `main` 함수 - `struct score yuni = {90, 80, 70};`를 통해 `..
2024. 9. 27.