struct noderecord { struct noderecord* next; int data; };
指针 next 是如何声明而不出现任何错误的?我们在声明一个指针后又添加了一个元素,指针元素的大小会不会错误?
c
c ×1