Skip to content

Instantly share code, notes, and snippets.

@mukulrawat1986
Created May 8, 2014 12:24
Show Gist options
  • Save mukulrawat1986/420f4e55c186ad1340a8 to your computer and use it in GitHub Desktop.
Save mukulrawat1986/420f4e55c186ad1340a8 to your computer and use it in GitHub Desktop.
C++ function to convert string to int and int to string
string toString(int a){
ostringstream os;
os<<a;
return os.str();
}
int toInt(string s){
int a;
istringstream is(s);
is>>a;
return a;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment