0
How to code a program which can convert a string to an integer in C++?
eg: input a string: "1234" output an int: 1234 p/s: the string has to be inputted by the user. Thank you!!!
2 Answers
+ 4
https://code.sololearn.com/cSSK2DC4OqFj/?ref=app
this does both.(int to string, string to int) it should contain what you need
+ 3
try to use this function stringstream name(variable);