摘要: 1、struct ①取地址 数组:数组名会被转化为指针 int a[3]; int *pa = a; 函数:函数名会被转化为指针 #include <stdio.h> void max(void){ printf("hello, world!\n"); } int main() { void (*p 阅读全文
posted @ 2021-05-16 17:17 我是二狗 阅读(308) 评论(0) 推荐(0) 编辑