Recent Posts
Recent Comments
Archives
- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 공연
- 동적계획법
- 다이나믹 프로그래밍
- apache
- Graph
- 백준
- 우분투
- 넓이 우선 탐색
- Algorithm
- 비주얼 스튜디오 코드
- 아파치
- dfs
- simulation
- ubuntu
- filezila server
- cube sound
- 그래프
- 배틀
- BFS
- 삼성 알고리즘
- 시뮬레이션
- 춤
- Visual Studio Code
- C++
- sw expert academy
- dp
- dynamic programming
- BOJ
- 알고리즘
- baek joon
Link
댄코 - 댄싱코딩
[C++ 문법] string to char, char to string 변환 본문
1.string to char
char ch[100];
string a = "I wanna go to bed";
strcpy(ch,a.c_str());
cout<<ch<<endl;
1 ) c_str로 string변수를 char로 변환
2 ) strcpy로 ch변수에 변환값 저장
2.char to string
char ch2[100] = {"Oh my god"};
string str(ch2);
cout <<str<<endl;
string 선언시에 괄호안에 char변수를 넣어주면 된다.
'코딩 > C++' 카테고리의 다른 글
[C/C++ 문법] 16진수를 10진수로, 10진수를 16진수로 변환 (0) | 2018.05.29 |
---|---|
[C++ / STL] SET, MAP비교 (0) | 2018.05.05 |
[C++] Binary Tree 구조체 구현 예제 (0) | 2017.11.02 |
[C++] next_permutation 예제 (0) | 2017.10.25 |
[c++] strtok 예제 (0) | 2017.10.02 |
Comments