标题:一个关于如何对文件保密的C程序 不知道怎么错了
取消只看楼主
ligx746
Rank: 1
等 级:新手上路
帖 子:45
专家分:0
注 册:2006-3-15
 问题点数:0 回复次数:1 
一个关于如何对文件保密的C程序 不知道怎么错了

#include <dos.h>
#include <stdio.h>
#include <string.h>
void main()
{
char errormsg[34],filename[15],*ptr,*date,*stream;
static char readerror[]={"read failed"};
File *stream;
int length;
printf("please input decipher filename:");
gets(filename);
stream=Fopen(filename,"rb++");
if (stream=NULL)
{
printf("\07");
strcpy(errormsg,readerror);
printf("\07");
printf("%d",errormsg);
printf("\07");
}
else
{
fseek(stream,2,SEEK_END);
length=ftell(stream);
date=(char *)calloc (unsinged)length,sizeof(char);
if (!date)
{
printf("alloction failure_aborting");
exit(1);
}
rewild(stream);
while(!feof(Stream))
{
fscanf(stream,"%~\x00",date);
while(ptr=strrchr(date,"\n"))
strnset(ptr,"\x00",1);
}
rewind(stream);
fwrite(date,1,length,stream);
fclose(stream);
}
}
这是在TC环境下编辑的一个关于多文件加密的程序 不知道加下划线的地方错在哪了 程序老是提示错误

搜索更多相关主题的帖子: STRIKE stream 文件 
2006-03-25 11:00
ligx746
Rank: 1
等 级:新手上路
帖 子:45
专家分:0
注 册:2006-3-15
得分:0 

谢谢 可是怎么改正呢?怎么能再改一下在TC里面运行


2006-03-27 20:45



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-52652-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 1.548813 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved