C (programming language): Difference between revisions
mNo edit summary |
mNo edit summary |
||
| Line 1: | Line 1: | ||
[[file:The_C_Programming_Language_logo.svg|thumb|The C Programming Language logo]] [[file:Ken_n_dennis.jpg|thumb|Ken n dennis|left]] [[file:The_C_Programming_Language,_First_Edition_Cover_(2).svg|thumb|The C Programming Language, First Edition Cover (2)]] | [[file:The_C_Programming_Language_logo.svg|thumb|The C Programming Language logo]] [[file:Ken_n_dennis.jpg|thumb|Ken n dennis|left]] [[file:The_C_Programming_Language,_First_Edition_Cover_(2).svg|thumb|The C Programming Language, First Edition Cover (2)]] | ||
[[file:Hello_World_Brian_Kernighan_1974.jpg|thumb|Hello World Brian Kernighan 1974]] [[file:1999_ISO_C_Concepts.png|thumb|1999 ISO C Concepts]] | [[file:Hello_World_Brian_Kernighan_1974.jpg|thumb|Hello World Brian Kernighan 1974]] [[file:1999_ISO_C_Concepts.png|thumb|1999 ISO C Concepts]] | ||
{{Infobox programming language | {{Infobox programming language | ||
| name = C | | name = C | ||
| Line 12: | Line 11: | ||
| developer = [[Bell Labs]] | | developer = [[Bell Labs]] | ||
| latest release version = C18 | | latest release version = C18 | ||
| typing = [[Static typing|Static]], [[Weak typing|weak]], [[Manifest typing|manifest]] | | typing = [[Static typing|Static]], [[Weak typing|weak]], [[Manifest typing|manifest]] | ||
| implementations = [[GNU Compiler Collection|GCC]], [[Clang]], [[Microsoft Visual C++|MSVC]] | | implementations = [[GNU Compiler Collection|GCC]], [[Clang]], [[Microsoft Visual C++|MSVC]] | ||
Latest revision as of 16:10, 11 July 2024





C is a general-purpose programming language that was developed in 1972 by Dennis Ritchie at Bell Labs. It has since become one of the most widely used programming languages of all time, particularly in system programming, embedded systems, and operating systems.
History[edit]
C was developed as a successor to the B programming language, which itself was influenced by BCPL. The language was designed to provide low-level access to memory, a simple set of keywords, and a clean style. C was initially used for Unix operating system development, and its success led to its widespread adoption.
Features[edit]
C is known for its efficiency and control. Key features include:
- Low-level access to memory
- A small set of keywords
- Pointers
- Manual memory management
- Structured programming constructs such as if, for, and while.
Syntax and Semantics[edit]
C's syntax is relatively simple and has influenced many other programming languages. It uses a combination of declarations and statements to define the structure and behavior of programs.
Data Types[edit]
C supports several basic data types:
Control Structures[edit]
C includes standard control structures such as:
Functions[edit]
Functions in C are defined using a return type, a function name, and a list of parameters. They can be declared before they are defined, allowing for function prototypes.
Standard Library[edit]
C comes with a standard library that provides many useful functions for tasks such as input/output, string manipulation, and mathematics. The standard library is defined in several header files, such as:
Influence[edit]
C has had a significant influence on many other programming languages, including:
Related Pages[edit]
See Also[edit]
| Programming languages |
|---|
|
|

This article is a Programming language-related stub. You can help WikiMD by expanding it!