Home > Article > Backend Development > What is the suffix of C language source program files?
The suffix of the C language source program is .c. On the Windows platform, the suffix after compilation is .obj and the suffix after connection is .exe.
Recommended: "c Language Tutorial"
Source program refers to 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 a text file, and the purpose of this typical format is to compile a computer program.
The source program file type refers to the special encoding method used when storing the source program, which is easy to read and identify.
At present, many programs are mainly developed using high-level languages, and the parts that require execution efficiency are written in low-level languages to achieve a compromise between development efficiency and operating efficiency.
For more programming related content, please pay attention to the Programming Introduction column on the php Chinese website!
The above is the detailed content of What is the suffix of C language source program files?. For more information, please follow other related articles on the PHP Chinese website!