文章目录
概述
记录一下Cherno的vs配置下载地址
https://thecherno.com/vs/
C++源码到可执行几个阶段
- 预处理 (Preprocessing)
- 编译 (Compilation)
- 汇编 (Assembly)
- 链接 (Linking)
编译期(Compile)
修改项目properties后输出文件需要重新编译使用Ctrl+F7
注意:Ctrl+F7只做该文件编译不做链接
查看预处理后的文件
// Multipy.cpp
int Multipy(int a, int b) {
int result = a