Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hi all Convert Integer to String! How? Thanks
itoa (), ltoa () or sprintf () functions
_ultoa, _ultow or sprintf(szBuffer, "%d", 42); or CString strBuffer; strBuffer.Format("%d", 42);
_ultoa, _ultow
sprintf(szBuffer, "%d", 42);
CString strBuffer; strBuffer.Format("%d", 42);
If I have seen further it is by standing on the shoulders of Giants. - Isaac Newton 1676