Answers for "c++ check if a char is a voewl"

C++
4

check if char in string c++

std::string s = "hell[o";
if (s.find('[') != std::string::npos)
    ; // found
else
    ; //
Posted by: Guest on September-14-2020
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++ check if a char is a voewl"

Browse Popular Code Answers by Language