gpt4 book ai didi

c - 尽管我的代码是正确的,但为什么它不起作用?

转载 作者:行者123 更新时间:2023-11-30 21:44:19 25 4
gpt4 key购买 nike

这是我的代码的一部分。它有 0 个错误和 0 个警告,但不起作用。这是完全正确的。但它不起作用。

#include<stdio.h>

struct details{
char empName;
int age;
float salary;
}det1;

void main(){

printf("Please enter a name : ");
scanf("%s",&det1.empName);
printf("Please enter the age : ");
scanf("%d",&det1.age);
printf("Please enter the salary : ");
scanf("%f",&det1.salary);

FILE *p;
p = fopen("employee.txt","w");
fprintf(p,"%s %d %0.2f",det1.empName,det1.age,det1.salary);
fclose(p);

}

最佳答案

关于OP发布的代码:

通过启用了最有用警告的编译器运行它会导致:

gcc    -ggdb -Wall -Wextra -Wconversion -pedantic -std=gnu11  -c "untitled2.c"  
untitled2.c:9:6: warning: return type of ‘main’ is not ‘int’ [-Wmain]
void main(){
^~~~
untitled2.c: In function ‘main’:
untitled2.c:20:17: warning: format ‘%s’ expects argument of type ‘char *’, but argument 3 has type ‘int’ [-Wformat=]
fprintf(p,"%s %d %0.2f",det1.empName,det1.age,det1.salary);
~^ ~~~~~~~~~~~~
%d

所以它不能干净地编译。

然后这个语句:

scanf("%s",&det1.empName);

正在尝试将无限长度的字符插入到单个字符中。

建议修改:

struct details{
char empName;
int age;
float salary;
}det1;

进入:

struct details           <-- struct definition
{
char empName[30]; <-- room for 29 characters + NUL terminating character
int age;
float salary;
}

struct details det1; <-- struct instance

然后,这个声明:

scanf("%s",&det1.empName);

需要更改为:

scanf("%29s",det1.empName);

请注意,“%s”将在第一个“空格”处停止,因此员工姓名必须是单个单词

请注意,“%s”始终将 NUL 字节附加到输入,因此 MAX CHARACTERS 修饰符必须比输入缓冲区的长度小 1。

您可以尝试:

scanf( "%29[^\n], det1.empName );  

因为它将读取输入,直到遇到“\n”或读取 29 个字符。

当然,对于所有对 scanf() 的调用,代码应该检查返回值(而不是参数值)以确保操作成功。即:

if( scanf("%29s",det1.empName) != 1 )
{
// tell user about problem
fprintf( stderr, "scanf to read employee name failed\n" );
// cannot continue so exit program
// note: 'exit()' and EXIT_FAILURE
// are exposed via the statement:
// #include <stdlib.h>
exit( EXIT_FAILURE );
}

// implied else, scanf for employee name successful

因为 scanf() 系列函数返回成功的“输入格式转换说明符”的数量(对于发布的代码中对 scanf() 的所有三个调用期望返回值为 1)

关于c - 尽管我的代码是正确的,但为什么它不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59851613/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com