在C語言中,要清空字符串數組,可以使用以下兩種方法:
方法一:使用strcpy函數將空字符串賦值給數組
#include <stdio.h>
#include <string.h>
int main()
{
char str[100];
// 清空數組
strcpy(str, "");
printf("%s\n", str); // 輸出為空字符串
return 0;
}
方法二:使用memset函數將數組中的元素全部賦值為0
#include <stdio.h>
#include <string.h>
int main()
{
char str[100];
// 清空數組
memset(str, 0, sizeof(str));
printf("%s\n", str); // 輸出為空字符串
return 0;
}
兩種方法都可以清空字符串數組,具體使用哪種方法取決于個人偏好和項目需求。