热门

最新

红包

立Flag

投票

同城

我的

发布
weixin_42259925
唯有杜康TM CSDN副总裁
5 年前
trueweixin_42259925

大咖来了欢迎观看

CSDN App 扫码分享
分享
评论
5
打赏
  • 复制链接
  • 举报
下一条:
小白求解下面p=s的两种位置怎么区别?①#include<iostream> using namespace std; #include<string.h> main() { char *p,s[80]; p=s; do{ gets(s); while(*p) cout<<*p++; cout<<endl; }while(strcmp(s,"end")); }②#include<iostream> using namespace std; #include<string.h> main() { char *p,s[80]; do{ p=s; gets(s); while(*p) cout<<*p++; cout<<endl; }while(strcmp(s,"end")); }
立即登录