如何将值传递给结构变量我试图从用户那里获取员工信息然后将它们写入文件中,但是segmentation fault
在输入员工姓名后我得到了一个。这是我的代码。
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
struct record_em{
int id;
char name[20];
int salary;
int age;
};
int main( void )
{
struct record_em employee;
FILE *fp;
int id, salary, age;
char name[20];
int n=1;
fp = fopen("empRecord.dat","a");
while(n==1){
printf("\nEnter Employee ID\n");
scanf("%d",&id);
employee.id=id;
printf("\nEnter Employee Name\n");
scanf("%s",name);
employee.name=name;
printf("\nEnter Employee Salary\n");
scanf("%d",&salary);
employee.salary=salary;
printf("\nEnter Employee Age\n");
scanf("%d",&age);
employee.age=age;
fwrite(&employee,sizeof(employee),1,fp);
printf("Enter 1 to add new record \n");
scanf("%d",&n);
}
fclose(fp);
return 0;
}
输出(取自评论):
Fatmahs-MacBook-Air:~ fatmah$ gcc -o em em.c Fatmahs-MacBook-Air:~ fatmah$ ./em 输入员工编号 88 输入员工姓名 你 分段错误:11