请问下FWRITE的调库文件名应该是哪个?
#include <stdio.h>
#include <stdlib.h>
void main()
{
FILE *fp;
int a[8],*p=a;
if ((fp=fopen("c:\\tc\\1234.txt","wb"))==NULL)
{
printf("\n can not open file! \n");
exit(0);
}
while (p<a+8)
scanf("%d",p++);
fwirte(a,size(int),8,fp);
fclose(fp);
}
这个是从键盘上读取8个整形数据 ,哎问题又来了!!
error C2065: 'fwirte' : undeclared identifier
C:\tc\26\26.cpp(14) : error C2065: 'size' : undeclared identifier
C:\tc\26\26.cpp(14) : error C2144: syntax error : missing ')' before type 'int'
C:\tc\26\26.cpp(14) : error C2059: syntax error : ')'
执行 cl.exe 时出错.
26.exe - 1 error(s), 0 warning(s)