: error : 'strcpy' : cannot convert parameter 1 from 'char' to 'char *' 帮忙看下啦

#include<stdio.h>#include<string.h>#include<stdlib.h>#defineN5typedefstruct{inta[3];/... #include <stdio.h>
#include <string.h>
#include <stdlib.h>
#define N 5
typedef struct
{
int a[3]; //各门课成绩
int total; //总分
double pj; //平均分
int dr; //排名
}learn;
typedef struct student
{
char num; //学号
char name; //姓名
char sex; //性别
int age; //年龄
learn degre; //成绩
struct student *next;
}Student;
Student *head=NULL;
void lianbiao() //从文件中读取学生信息放到链表中
{
FILE *fp;
if((fp = fopen("file1.txt","r")) == NULL)
{
printf("Could not open data file.\n");
exit(0);
}
head = (Student*)malloc(sizeof(Student));
Student *p = head;
for(int i = 0;i < N;i++)
{
Student stu;
fscanf(fp,"%d %s %s %d %d %d %f %d",&stu.num,&stu.name,&stu.sex,&stu.age,&stu.degre.a[0],&stu.degre.a[1],&stu.degre.a[2],&stu.degre.total,&stu.degre.pj,&stu.degre.dr);
Student *p = (Student*)malloc(sizeof(Student));
strcpy(p->num,stu.num); //这里有问题
strcpy(p->name,stu.name);
p->sex = stu.sex;
p->age = stu.age;
p->degre.a[0] = stu.degre.a[0];
p->degre.a[1] = stu.degre.a[1];
p->degre.a[2] = stu.degre.a[2];
p->degre.total = stu.degre.total;
p->degre.pj = stu.degre.pj;
p->degre.dr = stu.degre.dr;
if(i<N-1)
{
p->next = (Student*)malloc(sizeof(Student));
p = p->next;
}
p->next = NULL;
}
}
void show() //输出函数
{
Student *p = head;
printf("学号\t姓名\t性别\t年龄\t英语\t数学\t专业\t总分\t名次\n");
while(p != NULL)
{
printf("%d\t%s\t%s\t%d\t%d\t%d\t%d\t%d\t\t%d\n",p->num,p->name,p->sex,p->age,p->degre.a[0],p->degre.a[1],p->degre.a[2],p->degre.total,p->degre.dr);
p = p->next;
}
}
void main()
{
lianbiao();
show();
}
展开
 我来答
libinhao1111
2013-04-09 · TA获得超过1013个赞
知道小有建树答主
回答量:425
采纳率:0%
帮助的人:553万
展开全部
错误类型很明显啊.你的num是一个字符,不是字符串,也不是1维字符数组,所以报出这个错误,把
char num; 改成char num[20];

另外还有其他的几个也要改,只要是%s输入的都改成字符数组.
更多追问追答
追问
改了,可是没有数据输出,只输出了提示
追答
那你就要debug单步跟踪了,另外你这个是从文本里面读数据,你看看文本的路经/数据是否存在.
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式