I'm new to C++ but I'm facing comparing Problem
void print(int x, char const*b=""){
std::cout << x;
if(b == "a"){
/*this code not execute I don't know why ?*/
std::cout << "\n";
}
}
/*calling my print function*/
print(2020, "a")