Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Using _itoa or converting int to char
Message
General information
Forum:
Visual C++
Category:
Other
Miscellaneous
Thread ID:
00677359
Message ID:
00677526
Views:
25
You can use also a CString class in MFC:

CString szFile;
szFile.Format("portlog%d.dbf", i);
AfxMessageBox(szFile);

>Hi, when i try to convert int to char with _itoa, dont work in my machine, exist a different way for do this job?
>
>this is my code:
>
>char szFile[12] = "";
>char buffer[33];
>int i = 0;
>_itoa(i,buffer,10);
>lstrcat( szFile, "portlog");
>lstrcat( szFile, buffer);
>lstrcat( szFile, ".dbf");
>//lstrcpy(szFile,szFile);
>AfxMessageBox(szFile);
Previous
Reply
Map
View

Click here to load this message in the networking platform