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.
To keep your screen from closing you can use getchar() as follow in Visual studio:
#include "stdafx.h" #include #include using namespace std; int main() { cout << "Hello\n"; getchar(); }