2021年1月21日

摘要: #include <stdio.h> // void (*fun)(void) = &fun//函数指针 // void *fun(void){return 指针}//指针函数 因为优先级变了 //void (*fun(void/int/char op))(void){return 函数指针;}// 阅读全文
posted @ 2021-01-21 22:42 CodingLifeFkingMovie 阅读(39) 评论(0) 推荐(0) 编辑
 
摘要: 宏定义 #include <stdio.h>#define interger int* //只是简单的替换,相当于int*b,int c,不能执行c=b//typedef int* interger;int main(){ int a=5; interger b,c; b=&a; c=b; prin 阅读全文
posted @ 2021-01-21 19:44 CodingLifeFkingMovie 阅读(169) 评论(0) 推荐(0) 编辑
 
摘要: #include <stdio.h> struct A { int num=5;// // } a[10]; struct B//全局变量 { // // }; struct B b[10];//全局变量 int main() { printf("%p\n",a);//可访问 printf("%p\ 阅读全文
posted @ 2021-01-21 10:35 CodingLifeFkingMovie 阅读(53) 评论(0) 推荐(0) 编辑