#include
#include
int main()
{//找出字符串中的空格,并将其删除
char* str = "in ter e st ing";
int i = 0;
while (*(str+i) != '\0')
{
if (*(str + i) == ' ')
{
int a = i;
while (*(str + a) != '\0')
{
*(str + a) = *(str + a + 1);??在这一行 调试老是显示中断...
a++;
}
}
i++;
}
printf("%s\n", str);
return 0;
}
在C/C++不能存在像这种赋值方式吗?