我使用VS 2010作为我的IDE,这段代码正常工作,直到将fgets作为puts参数调用。它写下文件中的数字很好,但它也打印出一些讨厌的乱码。也许我错过了一个\ 0某个地方,不知道。其他人在mingw或gcc等其他编译器上尝试过它,效果很好。
#include <stdio.h>
#include <stdlib.h>
int main()
{
int *a, n, i;
char str[512];
FILE *f;
printf("Insert array size: ");
scanf("%d", &n);
if(n <= 0)
{
printf("%d is not an allowed value!\n", n);
return 1;
}
a = (int*)malloc(n * sizeof(int));
if(a == NULL)
return 2;
putchar('\n');
f = fopen("myarray.txt", "r+");
if(f == NULL)
return 3;
for(i = 0; i < n; ++i)
{
printf("Insert %d. element of the array: ", i + 1);
scanf("%d", &a[i]);
fprintf(f, "%d ", a[i]);
}
putchar('\n');
puts(fgets(str, 512, f));
free(a);
fclose(f);
return 0;
}