gpt4 book ai didi

c - 程序不会在 scanf ("%c", &ch) 行停止,为什么?

转载 作者:太空宇宙 更新时间:2023-11-04 04:10:40 25 4
gpt4 key购买 nike

<分区>

程序不会在 scanf("%c", &ch) 行停止。为什么会这样,有人可以向我解释一下吗

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

struct list {
char val;
struct list * next;
};

typedef struct list item;

void main()
{
char ch;
int num;

printf("Enter [1] if you want to use linked list or [2] for realloc\n");
scanf("%d", &num);
if(num == 2)
{
scanf("%c", &ch);
printf("%c", ch);
}
}

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