구조체 (typedef, struct)


구조체 (typedef, struct)

구조체 기본 문법 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 #include <iostream> using std::cout; //struct Man { // int age; // double weight; //}; typedef struct{ int age; double weight; }Man; int main() { Man lee; lee.age = 100; lee.weight = 33.5; cout << lee.age << "\n" << lee.weight; return 0; } Colored by Color Scripter cs * typedef 사용시 13번줄 앞에 struct 생략가능 * c++에서는 struct 생략가능...

구조체 (typedef, struct)에 대한 요약내용입니다.

자세한 내용은 아래에 원문링크를 확인해주시기 바랍니다.



원문링크 : 구조체 (typedef, struct)