CITEC Forum
>
Computer Knowledge
>
Programming Zone
>
C/C++,C#,VC++,MFC,Win32
> Convert CString to char*
PDA
View Full Version :
Convert CString to char*
asylu3
02-02-2005, 10:20 PM
char target[]="";
CString src="hello";
target=src.GetBuffer(10);
labyrinth
04-02-2005, 02:32 PM
CString str;
...
char* pCh = (LPCTSTR) str;
Powered by vBulletin® Version 4.2.5 Copyright © 2026 vBulletin Solutions Inc. All rights reserved.