Home  >  Article  >  Backend Development  >  What is the extension of C language source program?

What is the extension of C language source program?

青灯夜游
青灯夜游Original
2020-07-23 14:20:0925529browse

The extension of the c language source program is ".C". The sequence of instructions composed of C language is called a C source program, and the suffix of the source program file is ".c"; the source program is compiled by the C compiler to generate a binary file (called an object file) with the suffix ".obj".

What is the extension of C language source program?

The instruction sequence composed of C language is called C source program, and the suffix of the source program file is ".c". The source program is compiled by the C compiler to generate a binary file (called an object file) with the suffix ".obj", and then a software called the "link program" (Link) combines the object file with various programs provided by the C language. The library functions are connected to generate an executable file with the suffix ".exe".

Description:

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 used on operating platforms such as embedded processors and supercomputers. Compiled on many computer platforms.

C language is obviously better than other high-level languages ​​when it comes to operating systems and system usage programs, as well as when hardware needs to be operated. Many large-scale application software are written in C language.

C language has the characteristics of both a high-level language and an assembly language; it is both a successful system design language and a practical programming language; it can be used to write applications that do not rely on computer hardware. Program can be used to write various system programs; it is a popular and widely used programming language.

Related recommendations: "c Language Tutorial"

The above is the detailed content of What is the extension of C language source program?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn