Home  >  Article  >  Backend Development  >  What is the code in c language?

What is the code in c language?

little bottle
little bottleOriginal
2019-05-11 09:18:0733910browse

C language code refers to program statements and computer instructions written according to C language writing rules; the storage file extension of C language code is generally ".c" file or ".h" file , respectively corresponding to C source file (source file) and C header file (header file).

What is the code in c language?

#C language is a programming language. The design goal of the C language is to provide a programming language that can be easily compiled, handle low-level memory, generate only a small amount of machine code, and can run without any runtime environment support.

C language describes problems faster than assembly language, has less workload, good readability, and is easy to debug, modify and transplant, and the code quality is equivalent to assembly language. Among all programming languages, C language is relatively old and primitive. It is also the most efficient programming language among similar languages ​​that is closer to hardware.

In short, the source code of C language is the program statement written according to the writing rules of C language; the common storage file extension is generally .c file or .h file, corresponding to C source file and C header file.

Extended information

The source code is the source program.

Source code is a series of human-readable computer language instructions, which refers to uncompiled text code.

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 can be completed through a compiler.

The above is the detailed content of What is the code in c language?. 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