摘要:
一、结构体 Struct 创建和基本使用 #include <stdio.h> #include <stdlib.h> #include <string.h> // 自定义数据类型 : 结构体 struct Person { int age; char id[18]; char name[20]; 阅读全文
摘要:
一、概述 程序运行之后,所有的数据加载到内存上 内存会被操作系统进行分区处理, 划分的区域主要分为4个: 【1、代码文本区 text】 存放开发者编写的代码文本,二进制内容形式 【2、静态全局区 StaticGlobal】 数据区 + 未初始化数据区(data + bss) 存放各种形式的变量和常量 阅读全文