How to convert char digit to int in C++

2 Answers

0 votes
#include <iostream>

using namespace std;

int main()
{
	char ch = '3';

	int n = ch - '0';

	cout << n << endl;

	return 0;
}

/*
run:

3

*/

 



answered Apr 2, 2017 by avibootz
0 votes
#include <iostream>

using namespace std;

int main()
{
	char ch = '5';

	int n = ch - 48;

	cout << n << endl;

	return 0;
}

/*
run:

5

*/

 



answered Apr 2, 2017 by avibootz

Related questions

1 answer 187 views
187 views asked May 29, 2020 by avibootz
2 answers 241 views
241 views asked Apr 1, 2017 by avibootz
2 answers 255 views
3 answers 324 views
324 views asked Apr 3, 2017 by avibootz
2 answers 252 views
1 answer 233 views
233 views asked Apr 2, 2017 by avibootz
2 answers 261 views
...