Skip to content

Instantly share code, notes, and snippets.

@smamran
Last active June 5, 2016 12:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save smamran/194c2efb2a41dc238fd3 to your computer and use it in GitHub Desktop.
Save smamran/194c2efb2a41dc238fd3 to your computer and use it in GitHub Desktop.
C/C++ Codes

Char to String conversion C++

    int i = 65;
    char c = i;
    string s;
    stringstream ss;
    ss << c;
    ss >> s;
    cout << s << endl;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment