본문 바로가기
IT-개발,DB

[개발/C++] 형 변환 char* to string or string to char*

by SB리치퍼슨 2012. 1. 3.

형 변환

char* to string



string temp_file;
char szPath[256] = "
C:\\Projects"
 

temp_file = string(szPath);
temp_file += string ("\\file.tmp");


string to char*


string temp_file = "\\file.tmp";
char szPath[256] = "
C:\\Projects"

strcat(szPath, temp_file.c_str());


 

  


















 
반응형

댓글