我还没有学过指针,所以当有人问同样的问题时,我不知道还有什么其他答案在说:S ...
while(1)
{
/* intializing variables for the while loop */
temp1 = 0;
temp2 = 0;
val = 0;
for(counter = 0; counter < 256; counter++)
{
input[counter] = ' ';
}
scanf("%s", &input); /* gets user input */
if(input[0] == 'p') /* if user inputs p; program pops the first top element of stack and terminates the loop */
{ /* and the program overall */
printf("%d", pop(stack));
break;
}
if(input[0] == '+' || input[0] == '-' || input[0] == '*') /* if operator is inputted; it pops 2 values and does the arithemetic process */
{
if(stackCounter == 1 || stackCounter == 0) /* If user tries to process operator when there are no elements in stack, gives error and terminates */
{
printf("%s", "Error! : Not enough elements in stack!");
break;
}
else
{
temp1 = pop(stack);
temp2 = pop(stack);
push(stack, arithmetic(temp2, temp1, input[0]));
}
}
else /* if none of the above, it stores the input value into the stack*/
{
val = atoi(input); /* atoi is used to change string to integer */
push(stack, val);
}
}
它是一个程序,用于执行与有限堆栈的后缀相同的操作。其他功能都正常。当我在Visual Studio上编译和运行时,它工作正常,但是当我在linux上运行它(用于测试我的程序)时,它不起作用。它只是给了我:“c:52:警告:字符格式,不同类型arg(arg 2)”。
我假设它的scanf或atoi函数导致问题......
有没有办法通过更改几个字母轻松修复此程序?
答案 0 :(得分:0)
读取字符数组时,不应使用&符号(&
)。更改:scanf("%s", &input);
到scanf("%s", input);
,一切都应该没问题。
input
已经是指向将存储字符数组的内存块开始的指针,无需获取其地址。