-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCTutorial.vcxproj
224 lines (224 loc) · 10.8 KB
/
CTutorial.vcxproj
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
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<VCProjectVersion>16.0</VCProjectVersion>
<Keyword>Win32Proj</Keyword>
<ProjectGuid>{ed7b9f4e-fdc6-487a-adca-8a408b03a270}</ProjectGuid>
<RootNamespace>CTutorial</RootNamespace>
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v143</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v143</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Label="Shared">
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<LinkIncremental>true</LinkIncremental>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<LinkIncremental>false</LinkIncremental>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<LinkIncremental>true</LinkIncremental>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<LinkIncremental>false</LinkIncremental>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
<LanguageStandard>stdcpplatest</LanguageStandard>
<LanguageStandard_C>stdc17</LanguageStandard_C>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="1.0 第一个关机程序.c" />
<ClCompile Include="1.1 HelloWorld.c" />
<ClCompile Include="2.0 注释.c" />
<ClCompile Include="3.0 变量.c" />
<ClCompile Include="3.1 创造一门编程语言.c" />
<ClCompile Include="3.10 加密解密.c" />
<ClCompile Include="3.11隐式类型转换.c" />
<ClCompile Include="3.12 强制类型转换.c" />
<ClCompile Include="3.13 加减乘除.c" />
<ClCompile Include="3.14 自增与自减.c" />
<ClCompile Include="3.15 复合赋值运算符.c" />
<ClCompile Include="3.16 关系运算符与逻辑运算符.c" />
<ClCompile Include="3.17 if_else判断.c" />
<ClCompile Include="3.18 Switch语句.c" />
<ClCompile Include="3.19 While循环获取键盘输入.c" />
<ClCompile Include="3.2 响铃与跳格子.c" />
<ClCompile Include="3.20 do_while循环.c" />
<ClCompile Include="3.21 for循环.c" />
<ClCompile Include="3.22 穷尽法_百鸡百钱.c" />
<ClCompile Include="3.23 Goto语句.c" />
<ClCompile Include="3.24 goto跳出复杂逻辑.c" />
<ClCompile Include="3.25 闪现的World.c" />
<ClCompile Include="3.26 隐藏黑窗口.c" />
<ClCompile Include="3.3 进制转换.c" />
<ClCompile Include="3.4 数据类型.c" />
<ClCompile Include="3.5 数据极限与正负.c" />
<ClCompile Include="3.6 整型常量.c" />
<ClCompile Include="3.7 浮点型.c" />
<ClCompile Include="3.8 字符.c" />
<ClCompile Include="3.9 ASCII码.c" />
<ClCompile Include="4.0 函数.c" />
<ClCompile Include="4.1 数组语法.c" />
<ClCompile Include="4.2 二维数组.c" />
<ClCompile Include="4.3 排序法求极值.c" />
<ClCompile Include="4.4 选择排序法方法一.c" />
<ClCompile Include="4.4.1 选择排序法方法二.c" />
<ClCompile Include="4.5 冒泡排序法求极值.c" />
<ClCompile Include="4.6 冒泡排序法.c" />
<ClCompile Include="4.7 二分查找法.c" />
<ClCompile Include="5.0 内存与变量.c" />
<ClCompile Include="5.1 指针语法.c" />
<ClCompile Include="5.10 内存栈区疑问与调试.c" />
<ClCompile Include="5.11 内存堆区.c" />
<ClCompile Include="5.12 指针运算.c" />
<ClCompile Include="5.13 指针与数组.c" />
<ClCompile Include="5.14 指针的间接赋值.c" />
<ClCompile Include="5.15 指针数组.c" />
<ClCompile Include="5.16 结构体.c" />
<ClCompile Include="5.17 结构体初始化.c" />
<ClCompile Include="5.18 结构体变量之间赋值.c" />
<ClCompile Include="5.19 结构体静态数组.c" />
<ClCompile Include="5.2 指针详解.c" />
<ClCompile Include="5.20 结构体动态数组.c" />
<ClCompile Include="5.21 结构体嵌套指针.c" />
<ClCompile Include="5.22 结构体赋值细节上.c" />
<ClCompile Include="5.23 结构体赋值细节下.c" />
<ClCompile Include="5.24 C语言实现界面.c" />
<ClCompile Include="5.25 结构体保存数据.c" />
<ClCompile Include="5.3 指针练习.c" />
<ClCompile Include="5.4 指针练习二.c" />
<ClCompile Include="5.5 指针与数组.c" />
<ClCompile Include="5.6 数据类型大小.c" />
<ClCompile Include="5.7 间接修改内存地址.c" />
<ClCompile Include="5.8 内存栈区_全局区.c" />
<ClCompile Include="5.9 内存栈区.c" />
<ClCompile Include="6.0 C语言文件基本操作.c" />
<ClCompile Include="6.1 文件写入内容和文件缓冲区.c" />
<ClCompile Include="6.2 文件重定向.c" />
<ClCompile Include="6.3 文件重定向二.c" />
<ClCompile Include="6.3.1 FILE 类型的底层实现.c" />
<ClCompile Include="6.4 C语言读取文件内容.c" />
<ClCompile Include="6.5 C语言获取文件大小.c" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="3.1 创造一门编程语言.h" />
<ClInclude Include="4.0 函数.h" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>