Convert Unsigned Char To Int C++ Code Example


Example 1: converting char to integer c++


int x  = '9' - 48;
// x now equals 9 as an integer

Example 2: converting char to int in c++


#include <sstream>

using namespace std;

int main()
{
stringstream str;

str << "1";

double x;
str >> x;
}

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android How Can I Convert A String To A Editable