FILE *fp;
fp= fopen("E:\\CCS5.5 workplace\\TMS320C6748\\Compressout.txt","w");
// for(int i = 0; i < cout + 6*lenth; i++ ){
// int c = unsignedByteToInt(output[i]);
// fprintf(fp,"%d \n", c);
// //char ch[2]={0};
//ch[0]=output[i];
//ch[1]=output[i+1];
//int t = Byte2ToInt32(ch);
// printf("%d",t);
// }
fprintf(fp,"%d \n", a[8]);
if(fp==NULL)
{
printf("Not Open \n");
}
fclose(fp);
相应的代码段如上,但是就是操作不了文件写不出数据,哪位大神知道这是为什么啊? 谢谢了 |