Hi ALL:
The Story so far ...
We are trying to get C++ Express to go!
So Far it is not doing anything except
giving cryptic error messages.
|
|
Build started: Project: TIM, Configuration: Debug|Win32
|
|
|
Compiling...
stdafx.cpp
f:\program files\microsoft sdk\bin\hello!\tim\tim\stdio.h(22) : fatal error C1083: Cannot open include file: 'crtdefs.h': No such file or directory
|
|
|
Build log was saved at "file://f:\Program Files\Microsoft SDK\Bin\HELLO!\TIM\TIM\Debug\BuildLog.htm"
TIM - 1 error(s), 0 warning(s)
|
Still not going any way fast!
#include <stdio.h>
using namespace std;
int main(int)
{
cout << "\nHello World!\n" << endl;
return 0;
}
// TIM.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
int _tmain(int argc, _TCHAR* argv[])
{
return 0;
}
Any Suggestions
Visual C++6
|