[Warning] assignment makes pointer from integer without a cast 应该怎么改?
typedef struct{
uint32_t A;
void* B[4];
}tS;
函数是
int main(uint32_t *x,uint32_t y)
{
tS abc;
memset(&abc , 0 , sizeof(abc));
abc.A = 0;
abc.B[0] = x;
abc.B[1] = y;
}
2018-03-14 21:53
2018-03-14 22:33

2018-03-15 01:16
2018-03-15 21:32