摘要: 指针 struct C { int x, y; } c; int* px = &c.x; int* pxe= px + 1; int* py = &c.y; int main() { printf("value of c.x: = %d\n", c.x); printf("value of c.y: 阅读全文
posted @ 2025-03-17 17:33 又玄 阅读(7) 评论(0) 推荐(0)