8wDlpd.png
8wDFp9.png
8wDEOx.png
8wDMfH.png
8wDKte.png

fgets 不等待用户输入

Sachin Bahukhandi 2月前

49 0

在给定的代码中,fgets 没有等待输入。我尝试使用 scanf,但它给出了异常错误(在 0x0F74DDF4 (ucrtbased.dll) 处抛出异常)。我正在使用 Visual Studio 2015 调试我的 c...

在给定的代码中,fgets 没有等待输入。

我尝试使用 scanf,但它给出了异常错误(在 0x0F74DDF4 (ucrtbased.dll) 处抛出异常)。我正在使用 Visual Studio 2015 调试我的代码。有人能解释为什么 fgets 不等待输入吗?

#include<stdio.h>
#include<stdlib.h>
#include<process.h>

//GLOBAL-VARIABLE DECLARTION
#define MAX 1000

//GLOBAL-STRUCTURES DECLARATION
struct census
{
char city[MAX];
long int p;
float l;
};

//GLOBAL-STRUCTURE-VARIABLE DECLARATION
struct census cen[] = { 0,0,0 };

//USER-DEFINED FUNCTION
void header();

void header()
{
printf("*-*-*-*-*CENSUS_INFO*-*-*-*-*");
printf("\n\n");
}

//PROGRAM STARTS HERE
main()
{   
//VARIABLE-DECLARATION
int i = 0, j = 0;
//int no_of_records = 0;

//FUNCTION CALL-OUT
header();

printf("Enter No. of City : ");
scanf_s("%d", &j);

printf("\n\n");

printf("Enter Name of City, Population and Literacy level");
printf("\n\n");

for (i = 0;i < j;i++)
{
    printf("City No. %d - Info :", i + 1);
    printf("\n\n");

    printf("City Name :");
    fgets(cen[i].city, MAX, stdin);
    printf("\n");

    printf("Population : ");
    scanf_s("%d", &cen[i].p);
    printf("\n");

    printf("Literacy : ");
    scanf_s("%f", &cen[i].l);
    printf("\n");
}

//TERMINAL-PAUSE
system("pause");
}
帖子版权声明 1、本帖标题:fgets 不等待用户输入
    本站网址:http://xjnalaquan.com/
2、本网站的资源部分来源于网络,如有侵权,请联系站长进行删除处理。
3、会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。
4、本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
5、站长邮箱:yeweds@126.com 除非注明,本帖由Sachin Bahukhandi在本站《string》版块原创发布, 转载请注明出处!
最新回复 (0)
  • @Eddy,当您声明 cen[] 时,括号中没有大小,编译器会将其大小调整为 {} 中的项目数,其中有 3 个零。您可以将其声明为 cen[10] 并处理最多 10 个,或您想要的任意数量。为了安全起见,您可以在循环之前放置 if 测试,如果 j 大于您的数组,则 break/return/exit。

返回
作者最近主题: