可以使用库函数strcpy来将一个char数组转换成字符串。 strcpy函数的原型为: char* strcpy(char* destination, const char* source); 复制代码 其中,destination表示目标字符串的指针,source表示需要拷贝的char数组的指针。 使用示例: #include <stdio.h> #include <string.h> int main() { char arr[10] = {'...
先定义一个char型的指针变量,然后把"ab"的地址赋值给指针变量