I am new to using CLion and will try to write a simple program to understand how it works. I am on Windows 8 + cygwin , the program:
int main() { throw std::exception(); }
I got the output in the console:
C:\....\bin.exe Process finished with exit code 0
Where were program messages interrupted or something else? There was nothing, and how should I determine if my program was really interrupted by throwing an exception?
source share