我在1个数组中有2个向量: 答:1,2,3-B:4,5,6阵列看起来像:1 2 3 4 5 6 我必须将Dyadic产品打印到.txt文件 但我的printf()
有问题FILE *f;
f=fopen("log.txt","w+");
for(i=0;i<n;i++)
for(j=n;j<e;j++)
{
k++;
fprintf(f,"%d \t",(t[i]*t[j]));
}
fclose(f);
答案 0 :(得分:0)
我猜你代码中的某个地方有一个看起来像这样的fprintf
fprintf("format", args);
你忘记了文件参数:
fprintf(f, "format", args);
^^