표준입력 (stdin)
실행옵션 (runtime option)
코드:
실행 »
표준입력/실행옵션
#include <iostream> #include <string> using namespace std; int main(void) { string str1 = "C++ is Cool!"; string str2; str2 = str1; // 문자열 대입 연산 cout << str2; return 0; }