摘要: 一、动态库的生成 定义 a.h、a.c 如下: a.h #include <stdio.h> #include <stdlib.h> void FuncA(); a.c #include "a.h" void FuncA() { printf("我是 a\n"); } 调用gcc -c -fpic 阅读全文
posted @ 2022-09-12 13:14 MElephant 阅读(340) 评论(0) 推荐(0) 编辑
摘要: 一、双重身份 如下定义了一个 School 结构体: typedef struct School { int a; int b; }SCHOOL_S; SCHOOL_S stSch; 下面我们来输出一下 stSch 以及成员变量 a 和 b 的地址: int main() { printf("stS 阅读全文
posted @ 2022-09-12 12:26 MElephant 阅读(450) 评论(3) 推荐(1) 编辑