Hello!
I wrote a program in Visual Studio C ++ 2008. When working in Windows OS, it is no apparent reason that it will stop working after some time.
Tell me, please, what to do?
Hello!
I wrote a program in Visual Studio C ++ 2008. When working in Windows OS, it is no apparent reason that it will stop working after some time.
Tell me, please, what to do?
It seems that this question does not correspond to the subject of the site. Those who voted to close it indicated the following reason:
Mabie, this is a console application in C ++, and the program is closed, when all the code is executed, but do you need to prevent it from closing without certain actions?
If so, at the end of the main function add _getch(); and #include "conio.h" above
Well, if it's C #, then Console.ReadKey(); to help
Source: https://ru.stackoverflow.com/questions/627223/
All Articles