首页 新闻 会员 周边 捐助
2
回答数

已解决问题 5 c语言中的指针问题

代码如下: #include<stdio.h>void Swap(char*r,char*s){ char p; p=*r; *r=*s; *s=p;}main(){ char*s1="abc"; c