C语言
爱吃海苔的大鲨鱼
这个作者很懒,什么都没留下…
展开
-
c深度解剖-编译预处理
c-编译预处理#define可以出现在代码任何地方从本行开始之后的代码都可以使用该宏常量宏表达式#define MIN(a,b) ((a<b)?(a):(b))int min(int a, int b){ return ((a < b) ? a : b);}int main(){ int i = 1; int j = 5; pri...原创 2020-01-09 10:25:05 · 150 阅读 · 0 评论 -
c深度解剖-符号
c深度剖析-符号1.注释符号int/*...*/i; 这里看作空格 char* s = "abcdefgh //hijklmn"; 这里是字符串整体 //Is it a \ \代表换行 valid comment? in/*...*/t i; ...原创 2020-01-09 10:24:02 · 899 阅读 · 0 评论 -
c语言深度解剖-关键字
C深度剖析数据类型本质:固定内存大小的别名变量本质:连续存储空间的别名#include <stdio.h>typedef int INT32;typedef unsigned char BYTE ;typedef struct _demo { short s; BYTE b1; BYTE b2; INT32 i...原创 2020-01-05 11:34:18 · 323 阅读 · 0 评论