[C++] 구조체
다른 데이터형이 허용되는 데이터의 집합 #include using namespace std;struct MyStruct{ string name; string job; int age; float height;};int main(){ MyStruct A; A.name = "홍길동"; A.job = "개발자"; A.age = 30; A.height = 180.5; MyStruct B = {"김철수", "디자이너", 25, 170.5}; cout typedef 를 사용한 구조체 선언 typedef struct { int id; char name[50]; float score;} Student;Student s1;s1.id = 1;st..