C-typdef

笔记-C-typdef定义数组

> typdef定义数组后的初始化 | 计算机内部只知晓地址,类型为上层的高级语义 ```c #include typedef int ARR_INT_2[2]; void test(ARR_INT_2 *t) { int *t1; int *t2; t1 = &(((int*)t)[0]); t2 ......
数组 C-typdef 笔记 typdef
共1篇  :1/1页 首页上一页1下一页尾页