gpt4 book ai didi

c - 如何在 C 中分配新的字符串值

转载 作者:行者123 更新时间:2023-11-30 19:34:47 26 4
gpt4 key购买 nike

我的简单计算器正在尝试显示用户选择的操作。据我了解,在 C 中,字符串必须声明为一维字符数组。

int a, b;
int oper; //operation number
char operName[15];

printf("\nEnter two numbers: ");
scanf("%d%d", &a, &b);
printf("\nYou entered: %d and %d", a, b);

printf("\nChoose operation:"
"\n1 = +"
"\n2 = -"
"\n3 = x"
"\n4 = /");
scanf("%d", &oper);

代码编译并运行。但是当执行 switch block 时,它停止工作。我使用 switch 选择适当的操作名称,并将其分配给 operName (这样我就可以在执行实际操作之前显示所选操作)。

switch(oper){
case 1:
operName == "Addition";
break;
.
.
.
default:
operName == "Invalid input";
}

printf("\n\nYou chose: %s", oper);

我在某处读到我需要使用指针来防止内存泄漏,但我对此很陌生,所以也许有一种更简单的方法。

最佳答案

== 不用于赋值。 C 是一种相当低级的语言,您无法像为整数或字符那样为 C 中的字符串赋值。

为此,您必须使用标准库string.h

例如:

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

int main(void)
{
char source[1000], destination[1000];

/* Do something with the strings */

strcpy(destination, source);
return 0;
}

了解有关 string.h 的更多信息 here

关于c - 如何在 C 中分配新的字符串值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43405258/

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