可以使用庫函數strcpy
來將一個char
數組轉換成字符串。
strcpy
函數的原型為:
char* strcpy(char* destination, const char* source);
其中,destination
表示目標字符串的指針,source
表示需要拷貝的char
數組的指針。
使用示例:
#include <stdio.h>
#include <string.h>
int main() {
char arr[10] = {'H', 'e', 'l', 'l', 'o', '\0'};
char str[10];
strcpy(str, arr);
printf("arr: %s\n", arr);
printf("str: %s\n", str);
return 0;
}
輸出結果:
arr: Hello
str: Hello
在上述示例中,arr
是一個char
數組,里面存儲了字符’H’, ‘e’, ‘l’, ‘l’, ‘o’和字符串結束標志’\0’。通過strcpy
函數將arr
拷貝到str
,最后輸出str
,得到了轉換后的字符串"Hello"。