Home>Article>Backend Development> What is the code program written in c language?
The code program written in c language is a source program. Source program refers to an uncompiled text file written in accordance with certain programming language specifications. It is a series of human-readable computer language instructions.
Tutorial recommendation: "c language tutorial video"
Source program refers to an uncompiled program that follows a certain program A text file written in a design language specification is a series of human-readable computer language instructions.
In modern programming languages, source code can appear in the form of books or tapes, but the most commonly used format is text files. The purpose of this typical format is to compile a computer program. The ultimate goal of computer source code is to translate human-readable text into binary instructions that the computer can execute. This process is called compilation and is completed through a compiler.
C language is a high-level language. After the C language source program is compiled by the C language compiler, a suffix is generated. The binary file of OBJ (called the object file) is finally converted by a software called "Link". The OBJ file is connected with various library functions provided by the C language to generate a suffix. EXE executable file. Obviously C language cannot be executed immediately.
The above is the detailed content of What is the code program written in c language?. For more information, please follow other related articles on the PHP Chinese website!