C语言写入文件时出现乱码

程序是要将输出的链表保存到某个文本文件里面但是保存之后打开文本文件,出来的都是乱码不过字符数组部分却是正确的。。希望大虾解答。。原代码如下。。#include<stdio... 程序是要将输出的链表保存到某个 文本文件里面
但是保存之后打开文本文件,出来的都是乱码 不过字符数组部分却是正确的。。希望大虾解答。。原代码如下。。
#include <stdio.h>
#include <stdlib.h>
#include <malloc.h>
#include <string.h>
#include <conio.h>
#define LEN sizeof (struct student)
struct student
{
long code;
float mark;
char name[20];
char sex;
struct student *next;
};
int n;
struct student *creat(void)
{
struct student *head;
struct student *p1,*p2;
n=0;
p1=p2=(struct student *) malloc(LEN);
scanf("%ld %f %s %c",&p1->code,&p1->mark,&p1->name,&p1->sex);
head=NULL;
while(p1->code!=0)
{n=n+1;
if(n==1) head=p1;
else p2->next=p1;
p2=p1;
p1=(struct student *) malloc(LEN);
scanf("%ld %f %s %c",&p1->code,&p1->mark,&p1->name,&p1->sex);
}
p2->next=NULL;
return(head);
}
void print(struct student *head)
{struct student *p;
printf("\nNow,these %d records are:\n",n);
p=head;
if(head!=NULL)
do
{printf("%ld %.1f %s %c\n",p->code,p->mark,p->name,p->sex);
p=p->next;
}while(p!=NULL);
}
void save (struct student *head,char d[])
{
FILE *fp;
struct student *p;
p=head;
if ((fp=fopen(d,"wb"))==NULL)
{printf ("cannot open tile\n");
return;}
while (p!=NULL)
{fwrite (p,sizeof(struct student),1,fp);
p=p->next;

}
}
void main ()
{char sav[20];
printf ("请输入学生成绩记录:\n");
head=creat();
print (head);
{scanf ("%s",sav);
save (head,sav);}
展开
 我来答
pifuzhiyong
2009-03-18 · TA获得超过815个赞
知道小有建树答主
回答量:530
采纳率:38%
帮助的人:146万
展开全部
你上面输出都用printf("%ld %.1f %s %c\n",p->code,p->mark,p->name,p->sex); 了为啥输出到文件时用fwrite
整个结构给过去期望能有什么好的格式?
建议还是老老实实用fprintf
另外在写完数据 一般加个fflush比较好 可以让缓冲数据都输到文件没有缺失
然后要有一个fclose关闭文件
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式