Answers for "c++ program to input any value and check whether it is character, numeric or special character"

C++
1

c++ check if char is number

char c = '1';
bool result = isdigit(c);
cout << result << endl; //1
Posted by: Guest on September-05-2020

Code answers related to "c++ program to input any value and check whether it is character, numeric or special character"

Browse Popular Code Answers by Language