主题:vc环境请教
vc++6.0 建立一个MFC-EXE的多文档工程。在fileview的Source Files里建一个one.cpp文件,源码如下:
#include <iostream>
#include "one.h"
using std::cout;
using std::endl;
void main()
{
cout<<i<<endl;
} //第8行
在Header Files里建one.h文件,源码如下:int i=5;
编译one.cpp,错误信息:
one.cpp(9) : fatal error C1010: unexpected end of file while looking for precompiled header directive
请问这是怎么回事啊?
就想用VC++调试一下数据结构和算法,别的现在不需要,有什么好方法吗?不要别的一大堆。
#include <iostream>
#include "one.h"
using std::cout;
using std::endl;
void main()
{
cout<<i<<endl;
} //第8行
在Header Files里建one.h文件,源码如下:int i=5;
编译one.cpp,错误信息:
one.cpp(9) : fatal error C1010: unexpected end of file while looking for precompiled header directive
请问这是怎么回事啊?
就想用VC++调试一下数据结构和算法,别的现在不需要,有什么好方法吗?不要别的一大堆。