Error, C language uses compilation method to convert the source program into binary target code. After writing a C program, it usually goes through the following steps to complete the operation. Editing and compilation is to convert the edited source program. Translated into binary object code, the compiled binary code cannot be directly executed because each module is often compiled separately.
The C language uses a compilation method to convert the source program into binary object code. From writing a C program to completing its operation, it generally goes through the following steps: editing; Compilation means translating the edited source program into binary object code. The compiled binary code cannot be directly executed because each module is often compiled separately, and the compiled object code of each module must be It can be run only after connecting with the standard modules provided by the system; connection, after connecting the binary object code of each module with the system standard module, an executable file with an absolute address is obtained, which is a file that can be directly executed by the computer; execution, execution A compiled and linked executable object file.
Related introduction:
C language is a process-oriented, abstract, general-purpose programming language that is widely used in low-level development. C language can compile and process low-level memory in a simple way. C language is an efficient programming language that only generates a small amount of machine language and can run without any operating environment support. Although the C language provides many low-level processing functions, it still maintains cross-platform characteristics. C language programs written in a standard specification can be executed on many computer platforms including operating platforms such as embedded processors and supercomputers. Compile.
Recommended tutorial: "c Language Tutorial"
The above is the detailed content of The source program in C language can be executed without compilation, right?. For more information, please follow other related articles on the PHP Chinese website!