I just downloaded Visual Studio 2013. When I compile C, it doesn\'t show me my output. The output screen will show up for a brief second and then disappears.
#include #include int main() { printf("hello world"); system("pause"); //this pauses the program until you press any key return 0; }
the output will be:
hello world
press any key to continue ...