我初学c++,用的是microsoft visual c++,我按照课本试图运行以下程序,可是,电脑总是提醒我有一处错误,不知道是怎么回事。
程序如下:
#include <iostream.h>
void display()
{
cout<<"this is an example."<<endl;
}
void main()
{
display();
}
| 错误提示为“fatal error C1010: unexpected end of file while looking for precompiled header directive”。多谢大家帮忙。
|