I'm just trying to get the Hello World program to display in a Win32 App (I think that's what I picked)
It compiles fine, but when I try and run the program it does do anything.Code:// New Test1.cpp : Defines the entry point for the application. // #include "stdafx.h" #include "stdio.h" #include "iostream.h" #include "conio.h" int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) { cout<<"Hello World!"; getch(); return 0; }
MSVC++ Intro Version



LinkBack URL
About LinkBacks
)


