Closed. This question is not reproducible or was caused by typos。它当前不接受答案。












想改善这个问题吗?更新问题,以便将其作为on-topic用于堆栈溢出。

在10个月前关闭。



Improve this question




我正在使用指针反转数组:
void reverse(int *a,int n){
int i = 0,j = n-1;
while(i < j){
    int tmp;
    tmp = *(a+i);
    *(a+i) = *(a+j)
    *(a+j) = tmp;
    i++;
    j--;
}

}
我得到的错误:
error: invalid operands to binary * (have ‘int’ and ‘int *’)
     *(a+i) = *(a+j)
              ~~~~~~
     *(a+j) = tmp;
     ^~~~~~

我对为什么会这样感到非常困惑。

最佳答案

唯一的问题是这里;缺少*(a+i) = *(a+j)

关于c - 反转数组时,出现以下错误: invalid operands to binary * (have ‘int’ and ‘int *’ ) [closed],我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/60802824/

10-11 21:17