Tag Archives: 【 Image Processing 】【 C ++】

[vs console program flashback]


Today, when I was writing a program, I encountered a problem with VS console program flashing back. So I Googled it and found the following solutions:
Before the return, add system(” PAUSE “); PAUSE is case-insensitive; Add getchar() before return; Project – & gt; Property – & gt; Configure properties ->; The linker – & gt; System – & gt; Subsystem – & gt; SUBSYSTEM adds the “/SUBSYSTEM:CONSOLE” link option and just configure it
Three methods have been tried, can use ~