The problem of flash back by pressing enter window when debugging or executing program in Visual Studio C

In the process of learning C with Visual Studio, we sometimes finished typing the code and found that the program could execute as well. But is it ever frustrating to press the enter key to execute the next command in the program and see the window flash back?Don’t worry. Just type the following simple code.
Just add the last line:
system(” pause “);
, don’t forget “; “Oh.
# include< stdio.h>
#include< stdlib.h>
main()

y>oplaceholder0;
*************;
*************;
system (” pause “); // Don’t forget the semicolon
}

Read More: