표준입력 (stdin)
실행옵션 (runtime option)
코드:
실행 »
표준입력/실행옵션
#include <iostream> #include <string> using namespace std; int main(void) { string str = "C++ programming"; cout << "문자열 str의 length는 " << str.length() << "입니다." << endl; cout << "문자열 str의 capacity는 " << str.capacity() << "입니다." << endl; cout << "문자열 str의 max_size는 " << str.max_size() << "입니다."; return 0; }