Clion Console doesn't show output on Run. But, when I try to Debug the output is shown in a separate window. How to make the output appear in Clion's built-in console on Run?
Example:
#include <iostream>
int main()
{
    std::cout << "Hello, World!" << std::endl;
    return 0;
} 
 
    