字符串交换顺序的问题
答案:1 悬赏:40 手机版
解决时间 2021-11-25 02:41
- 提问者网友:临风不自傲
- 2021-11-24 04:50
字符串交换顺序的问题
最佳答案
- 五星知识达人网友:执傲
- 2021-11-24 06:30
#include
void swap(char **a,char **b)
{
char *temp;
temp=*a;
*a=*b;
*b=temp;
}
char *p[]={"asd","ase","qwe","dfg"};
void main()
{
swap(&p[0],&p[1]);
for(int i=0;i<4;i++)
{
printf("%s ",p[i]);
}
}
void swap(char **a,char **b)
{
char *temp;
temp=*a;
*a=*b;
*b=temp;
}
char *p[]={"asd","ase","qwe","dfg"};
void main()
{
swap(&p[0],&p[1]);
for(int i=0;i<4;i++)
{
printf("%s ",p[i]);
}
}
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯