我的简单计算器正在尝试显示用户选择的操作。我理解在C中,字符串必须声明为1D char数组。
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);
代码编译并运行。但是在执行开关块时,它会停止工作。我使用开关选择合适的操作名称,并将其分配给operName(因此我可以在执行实际操作之前显示所选操作)。
switch(oper){
case 1:
operName == "Addition";
break;
.
.
.
default:
operName == "Invalid input";
}
printf("\n\nYou chose: %s", oper);
我在某处读到了我需要使用指针来防止内存泄漏的问题,但我是新手,所以也许有更简单的方法。
答案 0 :(得分:0)
==
不适用于作业。 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