알고리즘/알고리즘 공부

[C++] printf로 string 출력 시 문자 깨지는 오류 해결법

개발하는 크롱 2020. 12. 3. 22:35
반응형

#include <string> 으로 불러와 사용하는 string 타입(자료구조)은 printf가 지원을 하지 않는다고 한다.

그렇기에 출력해보면 ???나 이상한 특수문자가 나온다.

ex>
string str = "Hello, World!";
printf("%s", str); //???로 출력

 

해결 방법은 간단하다. string 자료구조를 c_str()함수를 활용해 c-style의 string으로 변환해서 출력해주면 된다.

ex>
string str = "Hello, World!";
printf("%s", str.c_str()); // Hello, World!
반응형