struct limit{
int up;
int down;
};
void *x;
struct limit *l;
l->up=1;
l->down=20;
x=l;
cout<<x->up;
这是我的代码的一部分,我在最后一行出现错误'void*' is not a pointer-to-object type。我知道我的代码中的最后一行是错误的。x
我只想知道如何使用变量打印上下值。
struct limit{
int up;
int down;
};
void *x;
struct limit *l;
l->up=1;
l->down=20;
x=l;
cout<<x->up;
这是我的代码的一部分,我在最后一行出现错误'void*' is not a pointer-to-object type。我知道我的代码中的最后一行是错误的。x
我只想知道如何使用变量打印上下值。