Answers for "c++ check if char is upper"

C++
7

c++ check if string contains uppercase

#include <algorithm>

any_of(str.begin(), str.end(), isupper)
Posted by: Guest on March-15-2021

Browse Popular Code Answers by Language