hi,
can anyone help me with the use of stoi function.
i am getting the following error message-"test.cpp|8|error: 'nullptr' was not declared in this scope|""test.cpp|8|error: 'stoi' was not declared in this scope"
1 2 3 4 5 6 7 8 9 10
#include<iostream>
#include<string>
usingnamespace std;
int main()
{
string s;
cin>>s;
int sum=stoi(s,nullptr,10);
cout<<sum;
}