I just started learning Qt. Wrote a simple (elementary) test program:
int main() { QString string = QString("It is QString!"); cout << string.toStdString() << endl; return 0; } In the clion editor, it runs normally (displays "It is QString!") But when I try to run the exe file, an error occurs:
How to fix it?
