Following is the simple code of my application...
// Ex_01.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include < iostream >
// the space in < iostream > is due to the restriction in this post..
int _tmain(int argc, _TCHAR* argv[])
{
std::cout << "Hello World!\n";
return 0;
}
The out put of this program on console is as follows: The system cannot execute the specified program. Press any key to continue...
Mohsin Ali