Compdigitec Labs

« | Home | »

Converting between int and std::string in C++

By admin | November 20, 2010

#include <iostream>
#include <sstream>
#include <cstdlib>
using namespace std;

int main() {
	// convert int to string
	int some_int = 52;
	stringstream ss;
	ss << some_int;
	string result_s;
	ss >> result_s;
	// result_s = 52
	cout << result_s << endl;

	// convert string to int
	string some_string = "1234";
	int result_i = atoi(some_string.c_str());
	// result_i = 1234
	cout << result_i << endl;
}

If you found this article helpful or interesting, please help Compdigitec spread the word. Don’t forget to subscribe to Compdigitec Labs for more useful and interesting articles!

Topics: Linux, Windows | 10 Comments »

10 Responses to “Converting between int and std::string in C++”

  1. Russell Says:
    September 14th, 2011 at 08:42

    What about converting from std::string back to int

  2. admin Says:
    April 28th, 2012 at 19:13

    @Russell:

    See atoi() or sscanf() in the C standard library.

  3. https://dragon-money.sis-plus.ru/ Says:
    July 2nd, 2026 at 20:48

    … [Trackback]

    […] Info to that Topic: compdigitec.com/labs/2010/11/20/converting-between-int-and-string-in-c/ […]

  4. grd plus Says:
    July 15th, 2026 at 20:28

    … [Trackback]

    […] Information on that Topic: compdigitec.com/labs/2010/11/20/converting-between-int-and-string-in-c/ […]

  5. https://demo-idea.ru Says:
    July 16th, 2026 at 18:12

    … [Trackback]

    […] Here you will find 16120 additional Information to that Topic: compdigitec.com/labs/2010/11/20/converting-between-int-and-string-in-c/ […]

  6. จดทะเบียนบริษัท Says:
    July 18th, 2026 at 08:11

    … [Trackback]

    […] Read More to that Topic: compdigitec.com/labs/2010/11/20/converting-between-int-and-string-in-c/ […]

  7. Baht188 Says:
    August 1st, 2026 at 01:13

    … [Trackback]

    […] Here you can find 90783 more Info to that Topic: compdigitec.com/labs/2010/11/20/converting-between-int-and-string-in-c/ […]

  8. รับงานเอง Says:
    August 3rd, 2026 at 02:54

    … [Trackback]

    […] Read More to that Topic: compdigitec.com/labs/2010/11/20/converting-between-int-and-string-in-c/ […]

  9. TrustFinance Awards Says:
    August 21st, 2026 at 19:38

    … [Trackback]

    […] There you can find 92747 additional Information to that Topic: compdigitec.com/labs/2010/11/20/converting-between-int-and-string-in-c/ […]

  10. Whiteout Survival Says:
    September 10th, 2026 at 22:22

    … [Trackback]

    […] Here you will find 78159 additional Information to that Topic: compdigitec.com/labs/2010/11/20/converting-between-int-and-string-in-c/ […]

Comments