#include <boost/algorithm/string/predicate.hpp>
#include <string>
#include <iostream>

int main()
{
    char ar[10] = "hello";
    std::string str = "hELlO";
    
    std::cout << std::boolalpha << boost::iequals(str, ar) << '\n';
}