-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCTutorial.vcxproj.filters
243 lines (243 loc) · 8.14 KB
/
CTutorial.vcxproj.filters
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Filter Include="源文件">
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
<Extensions>cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
</Filter>
<Filter Include="头文件">
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
<Extensions>h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd</Extensions>
</Filter>
<Filter Include="资源文件">
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
</Filter>
</ItemGroup>
<ItemGroup>
<ClCompile Include="1.0 第一个关机程序.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="1.1 HelloWorld.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="2.0 注释.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="3.0 变量.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="3.1 创造一门编程语言.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="3.2 响铃与跳格子.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="3.3 进制转换.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="3.4 数据类型.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="3.5 数据极限与正负.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="3.6 整型常量.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="3.7 浮点型.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="3.8 字符.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="3.9 ASCII码.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="3.10 加密解密.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="3.11隐式类型转换.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="3.12 强制类型转换.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="3.13 加减乘除.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="3.14 自增与自减.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="3.15 复合赋值运算符.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="3.16 关系运算符与逻辑运算符.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="3.17 if_else判断.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="3.18 Switch语句.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="3.19 While循环获取键盘输入.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="3.20 do_while循环.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="3.21 for循环.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="3.22 穷尽法_百鸡百钱.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="3.23 Goto语句.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="3.24 goto跳出复杂逻辑.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="3.25 闪现的World.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="3.26 隐藏黑窗口.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="4.0 函数.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="4.1 数组语法.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="4.2 二维数组.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="4.3 排序法求极值.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="4.4 选择排序法方法一.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="4.4.1 选择排序法方法二.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="4.5 冒泡排序法求极值.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="4.6 冒泡排序法.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="4.7 二分查找法.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="5.0 内存与变量.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="5.1 指针语法.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="5.2 指针详解.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="5.3 指针练习.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="5.4 指针练习二.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="5.5 指针与数组.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="5.6 数据类型大小.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="5.7 间接修改内存地址.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="5.8 内存栈区_全局区.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="5.9 内存栈区.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="5.10 内存栈区疑问与调试.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="5.11 内存堆区.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="5.12 指针运算.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="5.13 指针与数组.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="5.14 指针的间接赋值.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="5.15 指针数组.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="5.16 结构体.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="5.17 结构体初始化.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="5.18 结构体变量之间赋值.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="5.19 结构体静态数组.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="5.20 结构体动态数组.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="5.21 结构体嵌套指针.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="5.22 结构体赋值细节上.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="5.23 结构体赋值细节下.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="5.24 C语言实现界面.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="5.25 结构体保存数据.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="6.0 C语言文件基本操作.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="6.1 文件写入内容和文件缓冲区.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="6.2 文件重定向.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="6.3 文件重定向二.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="6.3.1 FILE 类型的底层实现.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="6.4 C语言读取文件内容.c">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="6.5 C语言获取文件大小.c">
<Filter>源文件</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="3.1 创造一门编程语言.h">
<Filter>头文件</Filter>
</ClInclude>
<ClInclude Include="4.0 函数.h">
<Filter>头文件</Filter>
</ClInclude>
</ItemGroup>
</Project>