C语言二维数组中第二个数组存放的汉字长度不一样,要在这个二维数组中从第二行开始复制到另一个二维数组中
时间: 2023-12-20 18:24:38 浏览: 72
你可以使用 `strlen()` 函数来获取每个汉字字符串的长度,然后根据长度分别复制到另一个数组中。以下是一个示例代码:
```c
#include <stdio.h>
#include <string.h>
#define ROWS 3
#define COLS 10
int main() {
char source[ROWS][COLS] = {
"hello",
"你好啊",
"world"
};
char dest[ROWS][COLS];
int i, j;
for (i = 1; i < ROWS; i++) {
int len = strlen(source[i]);
for (j = 0; j < len; j++) {
dest[i][j] = source[i][j];
}
dest[i][j] = '\0';
}
for (i = 0; i < ROWS; i++) {
printf("%s\n", dest[i]);
}
return 0;
}
```
这个程序将源数组中从第二行开始的字符串复制到目标数组中,注意要在每个字符串的结尾加上 `\0`,以确保字符串的正确性。
阅读全文