#include<iostream>
#include<string>
using namespace std;
using namespace std;
int main()
{
string name;
cin >> name;
cout<< name.c_str();
}
//string은 객체이고 string의 맴버변수중에 char로 취급하는 c_str()이라는 것이 있다.
//string은 객체이고 string의 맴버변수중에 char로 취급하는 c_str()이라는 것이 있다.
'Computer Languages > C | C++' 카테고리의 다른 글
[인공지능] A* 알고리즘을 이용한 8-puzzle 만들기 (10) | 2015.04.04 |
---|---|
string::getline (0) | 2010.11.19 |
[펌]private, proteted, public 의 차이 (3) | 2010.10.12 |
[펌] new와 delete (0) | 2010.10.11 |
포인터 개념 (0) | 2010.10.11 |