gpt4 book ai didi

c - 迭代C 中的main 函数?

转载 作者:行者123 更新时间:2023-11-30 16:04:41 25 4
gpt4 key购买 nike

这是我的主要功能:

int main(int argc, char **argv)
{
LoadFile();

Node *temp;
char *key;

switch (GetUserInput())
{
case 1:

temp = malloc(sizeof(Node));

printf("\nEnter the key of the new node: ");
scanf("%s", temp->key);

printf("\nEnter the value of the new node: ");
scanf("%s", temp->value);

AddNode(temp);
free(temp);
break;
case 2:
key = malloc(sizeof(char *));
printf("Enter the key of the node you want to delete: ");
scanf("%s", key);
DeleteNode(key);

free(key);
break;
case 3:
PrintAll();
break;
case 4:
SaveFile();
break;
case 5:
return 0;
break;
default:
printf("\nWrong choice!\n");
break;
}

return 0;
}

唯一的问题是,任何 case 语句中断后,程序都会退出。我明白原因,但不知道如何解决。我希望程序每次都重复自己,即使在 case 语句之后也是如此。我只想说:

main(argc, argv);

在每个break语句之前?

最佳答案

稍等一下(1) { }

例如

while(1)
{
//switch... etc down to the close of the switch
}

关于c - 迭代C 中的main 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2726200/

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