fix: replace imgur with s3 for Chinese guide without conflict (#36052)

* fix: imgur to s3 for chinese guide without conflict

(cherry picked from commit 21e3afaee0f23d700f76ea662bc193b392fc54ac)

* fix: remove extra links

Co-Authored-By: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>

* fix: revert changes

* fix: revert changes

* fix: revert changes

* fix: revert changes
This commit is contained in:
Ahmad Abdolsaheb
2019-05-25 00:09:49 +03:00
committed by Parth Parth
parent 1e9f5bc09a
commit 23ca5d9cc6
33 changed files with 73 additions and 71 deletions

View File

@@ -6,7 +6,7 @@ localeTitle: 预处理器
顾名思义预处理器是在编译之前处理源代码的程序。在C / C ++中编写程序和执行程序之间涉及许多步骤。在我们真正开始学习预处理器之前,让我们先看看这些步骤。
![](https://i.imgur.com/Pb0aTkV.png)
![](https://cdn-media-1.freecodecamp.org/imgr/Pb0aTkV.png)
您可以在上图中看到中间步骤。程序员编写的源代码存储在文件program.c中。然后由预处理器处理该文件并生成名为program的扩展源代码文件。此扩展文件由编译器编译生成名为program.obj的目标代码文件。最后链接器将此目标代码文件链接到库函数的目标代码以生成可执行文件program.exe。