visual studio
September 24, 2008 2:02 PM Subscribe
The command window (in XP) flashes for just a second and then goes away when executing "Hello, World!" program written in Visual C++ express edition.
I started with Win32 project, then Console Application, put in source code and built the solution (F7), and everything seemed to be going swimmingly, then of course, I tried to execute it using F5 (and by going to project folder in explorer and Debug-->start debugging. Pretty sure this isn't relevant, but here's the source code:
// Ex1.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include
int _tmain(int argc, _TCHAR* argv[])
{
std::cout << "Hello, World!\n";
return 0;
}
posted by amsterdam63 to computers & internet (10 answers total)
posted by nomisxid at 2:13 PM on September 24, 2008