gpt4 book ai didi

c++ - 将 char 存储到指针值中时出现运行时错误

转载 作者:行者123 更新时间:2023-11-28 07:01:24 24 4
gpt4 key购买 nike

<分区>

问题出在第 15 行和第 16 行我无法将 char 存储到指向字符串的指针。问题与中给出的相同我的书。?我需要改变我的编译器开发 C++?请帮忙。

#include<iostream>
#include<conio.h>
using namespace std;
void reverse(char *str)
{
char *end=str;
char *beg=str;
char temp;
while(*end)
{
end++;
}
end--;
while(beg<end)
{
cout<<*beg<<" , "<<*end<<endl;
temp=*beg;
*beg=*end;
*end=temp;
beg++;
end--;
}
cout<<str;
}

int main()
{
char *str="saurabh";
reverse(str);
getch();
return 0;
}

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com