From 82ba818ff456bcd6d56a06226e3f27e98fbb55c3 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Thu, 14 Aug 2025 22:58:58 -0500 Subject: removing all downloaded devdocs files --- devdocs/c/language%2Fbasic_concepts.html | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 devdocs/c/language%2Fbasic_concepts.html (limited to 'devdocs/c/language%2Fbasic_concepts.html') diff --git a/devdocs/c/language%2Fbasic_concepts.html b/devdocs/c/language%2Fbasic_concepts.html deleted file mode 100644 index f5f9fa6a..00000000 --- a/devdocs/c/language%2Fbasic_concepts.html +++ /dev/null @@ -1,13 +0,0 @@ -

Basic concepts

This section provides definitions for the specific terminology and the concepts used when describing the C programming language.

-

A C program is a sequence of text files (typically header and source files) that contain declarations. They undergo translation to become an executable program, which is executed when the OS calls its main function (unless it is itself the OS or another freestanding program, in which case the entry point is implementation-defined).

-

Certain words in a C program have special meaning, they are keywords. Others can be used as identifiers, which may be used to identify objects, functions, struct, union, or enumeration tags, their members, typedef names, labels, or macros.

-

Each identifier (other than macro) is only valid within a part of the program called its scope and belongs to one of four kinds of name spaces. Some identifiers have linkage which makes them refer to the same entities when they appear in different scopes or translation units.

-

Definitions of functions include sequences of statements and declarations, some of which include expressions, which specify the computations to be performed by the program.

-

Declarations and expressions create, destroy, access, and manipulate objects. Each object, function, and expression in C is associated with a type.

-

See also

-
C++ documentation for Basic concepts
-

- © cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
- https://en.cppreference.com/w/c/language/basic_concepts -

-
-- cgit v1.2.3