struct A { int a; float b; char c[3]; }; int main(void) { struct A x = {10, 23.33, "hi"}; struct A *p2x = &x; /* 'p2x' is pointing to 'x' */ return 0; }.
確定! 回上一頁