C++의 구조체 : http://huiyu.tistory.com/entry/C-C%EC%97%90%EC%84%9C%EC%9D%98-%EA%B5%AC%EC%A1%B0%EC%B2%B4?category=463903 - C++의 구조체는 클래스의 일종이다, 그러나 클래스와 구조체는 차이점을 갖고 있다. - 클래스와 구조체의 차이점 : 키워드 struct를 대신해서 class를 사용한다면, 구조체가 아닌 클래스가 된다. [구조체]1234567891011121314151617181920212223struct Car{ char gamerID[ID_LEN]; int fuelGaunge; int curSpeed; void SHowCartState() { ... } void Accel() { ... } void Break..