danielnogo
Programmer
Is there anyway to take a string with only numbers and covert it to an integer? I know you can do it vice versa.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
CString msrope;
msrope = "1234";
int x = atoi((LPCTSTR) msrope);
string stlrope;
stlrope = "1234";
int x = atoi (stlrope.c_str());
CString msrope;
msrope = "1234";
int x = atoi(msrope);