我无法使用 C 上可用的任何文件处理函数(包括putw()
、fprintf()
和fwrite()
.
#include <stdio.h>
#include <conio.h>
void main()
{
int i;
int arr[]={10, 11, 12, 13, 14, 15};
FILE *fp;
if (fp = fopen("test", "w")) {
for(i=0; i<6; i++) {
putw(arr[i], fp);
}
}
fclose(fp);
fp = fopen("test", "r");
while ((i=getw(fp))!= EOF) {
printf("%d, ",i);
}
fclose(fp);
getch();
}
给出一个输出
10, 11, 12, 3584, 3840,
和一个修改过的数组
int arr[]={13, 11, 12, 13, 14, 15};
给出一个输出
2816, 3072, 0, 14, 15,
您可以注意到在遇到值 13后输出与预期不同。谁能帮我解决这个问题?