CString( LPCTSTR lpch,int nLength);
CString(const unsigned char * PSZ);
Short integer (int)
itoa(i,temp, 10); ///Convert I into a string and put it in temp. The last number represents decimal.
itoa(i,temp,2); ///Convert in binary mode
Long (long)
ltoa(l,temp, 10);