如何在C中取消引用指向struct的指针?

时间:2018-01-12 22:00:44

标签: c pointers struct

我在最后一个printf语句中遇到错误:unary的无效类型参数 '*'(have'int')。 我想*不会取消引用变量“res”,因为它不是指向整数的指针。我不知道如何解决这个问题。我真的很感激你的帮助。提前谢谢。

//program to find the pair of numbers that summed have has a result a given 
//number n
//ex. input: 8; output: (1,7) (2,6) (3,5) (4,4)
//input: 11; output: (1,10) (2,9) (3,8) (4,7) (5,6)
#include<stdio.h>
#include<stdlib.h>
typedef struct
{
int x;
int y;
} couple;
couple* sums(int n)
{
int i;
couple *c = (couple*) malloc(sizeof(couple)*n/2);
for ( i=0; i<n/2; i++)
{
c[i].x = i+1;
c[i].y = n-i-1;
}
return c;
}

int main()
{
    int n,i;
    couple *res;
    scanf("%d",&n);
    res=sums(n);
    for(i=0;i=n/2;i++)
    {
        printf("(%d,%d)",*(res[i].x),*(res[i].y));
    }
    return 0;
}

`

1 个答案:

答案 0 :(得分:2)

您所拥有的是int,因此无需使用*取消引用。

此外,您的循环条件不正确。您正在进行要进行比较的作业:

for(i=0;i<n/2;i++)
{
    printf("(%d,%d)", res[i].x, res[i].y);
}