-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
113 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
# 每集视频名称 | ||
|
||
## 语法和标准库 | ||
|
||
1. 1_在开始编程之前 | ||
2. 1_1_什么是编程 | ||
3. 1_2_如何学习编程 | ||
4. 1_3_什么是C | ||
5. 1_4_开发C的工具 | ||
6. 2_初识C | ||
7. 2_1_一个简单的C程序 | ||
8. 2_2_注释 | ||
9. 2_3_对象 | ||
10. 2_4_基本数据类型 | ||
11. 3_C的一些基本概念 | ||
12. 3_1_行为 | ||
13. 3_2_翻译单元 | ||
14. 3_3_翻译阶段 | ||
15. 4_表达式 | ||
16. 4_1_运算符 | ||
17. 4_1_1_算数运算符 | ||
18. 4_1_2_位操作运算符 | ||
19. 4_1_3_自增自减运算符 | ||
20. 4_1_4_赋值运算符 | ||
21. 4_1_5_关系运算符 | ||
22. 4_1_6_逻辑运算符 | ||
23. 4_1_7_三路运算符 | ||
24. 4_1_8_逗号运算符 | ||
25. 4_1_9_sizeof | ||
26. 4_1_10_转型运算符 | ||
27. 4_1_11_其他运算符_之后讲 | ||
28. 4_2_运算符优先级 | ||
29. 4_3_求值顺序 | ||
30. 4_4_整数常量 | ||
31. 4_5_浮点常量 | ||
32. 4_6_字符常量 | ||
33. 4_7_一些隐式转换 | ||
34. 4_8_值类别 | ||
35. 5_语句 | ||
36. 5_1_表达式语句 | ||
37. 5_2_选择语句 | ||
38. 5_2_1_if | ||
39. 5_2_1_switch | ||
40. 5_3_循环语句 | ||
41. 5_3_1_while | ||
42. 5_3_2_do_while | ||
43. 5_3_3_for | ||
44. 5_4_跳转语句 | ||
45. 5_4_1_break | ||
46. 5_4_2_continue | ||
47. 5_4_3_return | ||
48. 5_4_4_goto | ||
49. 5_5_块语句 | ||
50. 6_函数 | ||
51. 6_1_函数声明定义 | ||
52. 6_2_函数调用 | ||
53. 6_3_递归和迭代 | ||
54. 7_数组 | ||
55. 7_1_数组定义 | ||
56. 7_2_数组初始化 | ||
57. 7_3_数组到指针转换 | ||
58. 8_指针 | ||
59. 8_1_指针声明 | ||
60. 8_2_函数指针 | ||
61. 8_3_指针作为函数参数 | ||
62. 8_4_restrict | ||
63. 8_5_空指针 | ||
64. 8_6_aliasing | ||
65. 9_声明 | ||
66. 9_1_声明的文法 | ||
67. 9_2_cv限定 | ||
68. 9_3_链接和存储期 | ||
69. 9_4_类型推导 | ||
70. 10_结构体 | ||
71. 10_1_结构体定义 | ||
72. 10_2_结构体初始化 | ||
73. 10_3_函数返回结构体 | ||
74. 10_4_结构体的对齐 | ||
75. 10_5_柔性数组成员 | ||
76. 10_6_位域 | ||
77. 11_共用体 | ||
78. 12_对象表示 | ||
79. 13_枚举 | ||
80. 14_查找和命名空间 | ||
81. 15_内存管理 | ||
82. 15_1_内存分配 | ||
83. 16_文件操作 | ||
84. 17_可变参数 | ||
85. 18_泛型 | ||
86. 19_属性 | ||
87. 20_错误处理 | ||
88. 21_线程 | ||
89. 22_原子 | ||
90. 23_预处理器 | ||
91. 24_标准库 | ||
92. 24_1_总览标准库 | ||
93. 24_2_独立和宿主 | ||
94. 24_3_预定义宏 | ||
95. 24_4_输入输出 | ||
96. 24_4_1_printf_scanf | ||
97. 24_5_数学库 | ||
98. 24_6_复数库 | ||
99. 24_7_二分和快排 | ||
100. 24_8_随机数 | ||
101. 24_9_时间日期 | ||
102. 24_10_字符处理 | ||
103. 24_11_字符串 | ||
104. 24_12_执行控制 | ||
105. 24_13_标准库扩展 | ||
|
||
## 数据结构与算法模块 | ||
|
||
## 项目模块 |