표준입력 (stdin)
실행옵션 (runtime option)
코드:
실행 »
표준입력/실행옵션
#include <iostream> using namespace std; struct TypeSize { char a; int b; double c; }; int main(void) { cout << "구조체 TypeSize의 각 멤버의 크기는 다음과 같습니다." << endl; cout << sizeof(char) << ", " << sizeof(int) << ", " << sizeof(double) << endl << endl; cout << "구조체 TypeSize의 크기는 다음과 같습니다." << endl; cout << sizeof(TypeSize); return 0; }