c++替换字符数组的2个相连的元素
时间: 2023-05-16 13:06:03 浏览: 182
字符串与字符数组的区别-C++教程 谭浩强
可以使用一个临时变量来交换这两个元素的值,例如:
```c
char arr[] = "hello";
int index = 2;
char temp = arr[index];
arr[index] = arr[index+1];
arr[index+1] = temp;
```
这样就可以将字符数组中下标为2和下标为3的两个元素交换位置了。
阅读全文