how to string a c++ int code example
Example 1: string to int in c++
#include <iostream>
#include <string>
using namespace std;
int main() {
string s = "10";
try
{
int i = stoi(s);
cout << i << '\n';
}
catch (invalid_argument const &e)
{
cout << "Bad input: std::invalid_argument thrown" << '\n';
}
catch (out_of_range const &e)
{
cout << "Integer overflow: std::out_of_range thrown" << '\n';
}
return 0;
}
Example 2: how to convert from string to int in c++
#include <iostream>
#include <sstream>
using namespace std;
int main() {
string s = "999";
stringstream degree(s);
int x = 0;
degree >> x;
cout << "Value of x: " << x;
}