最近在做dsp的时候对一些c语言的文件不是挺了解,找到一本书,有个例子,是这样的,完成文件的输入工作,源程序如下:
#include
main()
{
FILE *fp;
int a[8];
int *p;
p=a;
if((fp=fopen("C:\\test12.txt","w"))==NULL)
{
puts("\n sorry,can't open the txt file\n");
exit(0);
}
printf("input more than 8 numbers from -128 to 127 \n");