标题:编译与运行
取消只看楼主
蔡君君
Rank: 1
等 级:新手上路
帖 子:17
专家分:0
注 册:2016-10-31
结帖率:100%
已结贴  问题点数:2 回复次数:0 
编译与运行
#include <iostream.h>
void swap(char* &a,char* &b);
int main()
{
char * ap="hello";
char * bp="how are you?";
swap( ap,bp);
cout <<"ap:"<<ap<<endl;
cout <<"bp:"<<bp<<endl;
}                                           这个程序编译时没有错误,但是却不可以运行。
void swap(char* &a,char* &b)
{
char temp;
temp=*a;
*a=*b;
*b=temp;
}
搜索更多相关主题的帖子: include hello 
2016-11-11 17:33



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-471016-1-1.html




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

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