(C语言)每日代码||2023.12.24||fwrite()可以写入字符数组中的'\0'
void test() {
FILE* fp = fopen("test.txt", "w");
if (fp == NULL) {
perror("fopen error");
exit(1);
}
char a[5] = { '1','2','\0','3','4' };
fwrite(a, sizeof(a), 1, fp);//写入了12 34,写入了5个字节,'\0'也被写入了
fclose(fp);
}