Conversion of CString to char* and char* to CString
Hi Friends
while writing programs i often face the problem related with Conversion.
these are the basic conversion
Conversion of CString to char*
char* pchValue;
CString stValue;
pchValue = stValue.GetBuffer(0);
Conversion of char* to CString
char pchValue[] = "My Name";
CString stValue(pchValue);
Thanks
Pankaj Singh

0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home