- 论坛徽章:
- 0
|
原程序test.C如下:
#include<iostream.h>;
void main()
{
cout<<"hello!";
}
编译结果如下:
[root@localhost dcl]# g++ -o test test.C
In file included from /usr/include/c++/3.2.2/backward/iostream.h:31,
from test.C:1:
/usr/include/c++/3.2.2/backward/backward_warning.h:32:2: warning: #warning This
file includes at least one deprecated or antiquated header. Please consider using one of the 32 headers found in section 17.4.1.2 of the C++ standard. Examples
include substituting the <X>; header for the <X.h>; header for C++ includes, or <sstream>; instead of the deprecated header <strstream.h>;. To disable this warning
use -Wno-deprecated.
test.C:3: `main' must return `int'
请问各位大虾,这是怎么回事?我用的是red hat liunx 9.0 |
|