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 181 views
181 views asked May 29, 2020 by avibootz
2 answers 239 views
239 views asked Apr 1, 2017 by avibootz
2 answers 251 views
3 answers 320 views
320 views asked Apr 3, 2017 by avibootz
2 answers 248 views
1 answer 231 views
231 views asked Apr 2, 2017 by avibootz
2 answers 256 views
...