struct test{ int x; int y;. }; int main() { struct test a; //宣告結構a struct test *b = &a; //宣告結構指標b, 且指向a. a.x = 7; //運算也可用struct test a ...
確定! 回上一頁