使用struct和strcpy,程序崩溃

时间:2016-02-20 05:49:53

标签: c struct printf strcpy

您好,这是我第一次在本网站上发帖,而且我对结构不太熟悉或strcpy()我想知道为什么我的程序崩溃了。

#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <string.h>

struct Employee{
    char name[30];
    char email[30];
};

void main(){
    struct Employee x;
    char employee_name[30];
    char employee_email[30];

    printf("enter the employees's name\n");
    fgets(employee_name,30,stdin);
    strcpy(x.name, employee_name);

    printf("enter the employee's email\n");
    fgets(employee_email,30,stdin);
    strcpy(x.email,employee_email);

    printf('%s',x.name);
    printf('%s',x.email);
}

程序的目的基本上是接受名称和电子邮件作为输入,并将其放在结构的名称和电子邮件中,然后使用结构打印它们。现在程序编译并允许我接受输入但在此之后它崩溃了,我不知道为什么。有谁知道崩溃发生的原因?

1 个答案:

答案 0 :(得分:3)

问题在于

printf('%s',x.name);
printf('%s',x.email);

根据printf()格式,

  

int printf(const char *format, ...);

fisrt参数是const char *。所以,你需要写

printf("%s",x.name);
printf("%s",x.email);

那就是说,

  • void main()应为int main(void),至少要符合标准。
  • fgets()扫描并将尾随换行符(如果有)作为输入的一部分存储到输入缓冲区。您可能希望在复制缓冲区之前将其剥离。