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.
Source code (also called 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.
Source code mainly has the following two functions:
1. Generate target code, that is, code that can be recognized by the computer.
2. Explain the software, that is, explain the writing of the software. Many beginners and even a few experienced programmers ignore the writing of software descriptions because this part will not be directly displayed in the generated program and will not be involved in compilation.
The above is the detailed content of What is the extension of c source program. For more information, please follow other related articles on the PHP Chinese website!