Answers for "cpp get amount of chars in a number"

C++
0

c++ char it is a number

#include<ctype.h>
--------
char c = '1';
bool result = isdigit(c);
if(result)
	cout << "Yes, it is digit" << endl;
else
	cout << "No, it is't digit" << endl;
Posted by: Guest on January-02-2022

Code answers related to "cpp get amount of chars in a number"

Browse Popular Code Answers by Language