- Hands-On System Programming with C++
- Dr. Rian Quinn
- 83字
- 2021-07-02 14:42:32
Environment
The Environment section of the standard provides information that is mainly needed by compiler writers to better understand how to create a compiler for C.
It describes the minimum limitations the compiler must adhere to (such as the minimum number of nested if() statements that must be supported), as well as how programs are linked and started.
In this chapter, we will discuss program linking and execution to provide a better understanding of what is required to create a C program.