| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1079 人关注过本帖
标题:c语言编程
取消只看楼主 加入收藏
心灵百合
Rank: 5Rank: 5
等 级:职业侠客
帖 子:215
专家分:367
注 册:2011-3-30
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:0 
c语言编程
为什么Microsoft Visual C++ 6.0能编译C语言代码,而不能编译C++代码。
如:
#include"iostream.h"

int add(int x,int y)
{
    int z;
    z=x+y;
    return z;
}
void main()
{
    int a,b,c;

    cin>>a>>b;
    c=add(a,b);
    cout<<c<<endl;
}
而编译时报错!
--------------------Configuration: cp_1 - Win32 Debug--------------------
Compiling...
test.c
F:\VC 6\MyProjects\cp_1\test.c(13) : error C2065: 'cin' : undeclared identifier
F:\VC 6\MyProjects\cp_1\test.c(13) : warning C4552: '>>' : operator has no effect; expected operator with side-effect
F:\VC 6\MyProjects\cp_1\test.c(15) : error C2065: 'cout' : undeclared identifier
F:\VC 6\MyProjects\cp_1\test.c(15) : error C2065: 'endl' : undeclared identifier
F:\VC 6\MyProjects\cp_1\test.c(15) : warning C4552: '<<' : operator has no effect; expected operator with side-effect
Error executing cl.exe.

test.obj - 3 error(s), 2 warning(s)
求大侠指点,谢谢!
搜索更多相关主题的帖子: Microsoft c语言编程 include warning return 
2011-10-29 17:57
快速回复:c语言编程
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.025782 second(s), 10 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved