I\'m trying out Visual studio 2010 by compiling a C program. After it displays the solution in the \"DOS\" command window, the window is immediately closed. In Visual studio 200
If you want it to stay open, you need to add code to your program. Like it
#include #include ... main(...) { your codes . . . system("pause"); }
if you add this code ,your black screen stay at open. " system("pause") " inside the stdlib.h header file.