You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/docs/c/language/basic_concepts.mdx
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,12 +12,12 @@ import DocLink from "@components/DocLink.astro";
12
12
13
13
This section provides definitions for the specific terminology and the concepts used when describing the C programming language.
14
14
15
-
A C program is a sequence of text files (typically header and source files) that contain <DocLinksrc="/c/language/declarations">declarations</DocLink>. They undergo <DocLinksrc="/c/language/translation_phases">translation</DocLink> to become an executable program, which is executed when the OS calls its <DocLinksrc="/c/language/main_function">main function</DocLink> (unless it is itself the OS or another *freestanding* program, in which case the entry point is implementation-defined).
15
+
A C program is a sequence of text files (typically header and source files) that contain <DocLinkdest="/c/language/declarations">declarations</DocLink>. They undergo <DocLinkdest="/c/language/translation_phases">translation</DocLink> to become an executable program, which is executed when the OS calls its <DocLinkdest="/c/language/main_function">main function</DocLink> (unless it is itself the OS or another *freestanding* program, in which case the entry point is implementation-defined).
16
16
17
-
Certain words in a C program have special meaning, they are <DocLinksrc="/c/keyword">keywords</DocLink>. Others can be used as <DocLinksrc="/c/language/identifier">identifiers</DocLink>, which may be used to identify <DocLinksrc="/c/language/object">objects</DocLink>, <DocLinksrc="/c/language/functions">functions</DocLink>, <DocLinksrc="/c/language/struct">struct</DocLink>, <DocLinksrc="/c/language/union">union</DocLink>, or <DocLinksrc="/c/language/enum">enumeration</DocLink> tags, their members, <DocLinksrc="/c/language/typedef">typedef</DocLink> names, <DocLinksrc="/c/language/statements">labels</DocLink>, or <DocLinksrc="/c/preprocessor/replace">macros</DocLink>.
17
+
Certain words in a C program have special meaning, they are <DocLinkdest="/c/keyword">keywords</DocLink>. Others can be used as <DocLinkdest="/c/language/identifier">identifiers</DocLink>, which may be used to identify <DocLinkdest="/c/language/object">objects</DocLink>, <DocLinkdest="/c/language/functions">functions</DocLink>, <DocLinkdest="/c/language/struct">struct</DocLink>, <DocLinkdest="/c/language/union">union</DocLink>, or <DocLinkdest="/c/language/enum">enumeration</DocLink> tags, their members, <DocLinkdest="/c/language/typedef">typedef</DocLink> names, <DocLinkdest="/c/language/statements">labels</DocLink>, or <DocLinkdest="/c/preprocessor/replace">macros</DocLink>.
18
18
19
-
Each identifier (other than macro) is only valid within a part of the program called its <DocLinksrc="/c/language/scope">scope</DocLink> and belongs to one of four kinds of <DocLinksrc="/c/language/name_space">name spaces</DocLink>. Some identifiers have <DocLinksrc="/c/language/storage_duration">linkage</DocLink> which makes them refer to the same entities when they appear in different scopes or translation units.
19
+
Each identifier (other than macro) is only valid within a part of the program called its <DocLinkdest="/c/language/scope">scope</DocLink> and belongs to one of four kinds of <DocLinkdest="/c/language/name_space">name spaces</DocLink>. Some identifiers have <DocLinkdest="/c/language/storage_duration">linkage</DocLink> which makes them refer to the same entities when they appear in different scopes or translation units.
20
20
21
-
Definitions of functions include sequences of <DocLinksrc="/c/language/statements">statements</DocLink> and <DocLinksrc="/c/language/declarations">declarations</DocLink>, some of which include <DocLinksrc="/c/language/expressions">expressions</DocLink>, which specify the computations to be performed by the program.
21
+
Definitions of functions include sequences of <DocLinkdest="/c/language/statements">statements</DocLink> and <DocLinkdest="/c/language/declarations">declarations</DocLink>, some of which include <DocLinkdest="/c/language/expressions">expressions</DocLink>, which specify the computations to be performed by the program.
22
22
23
-
<DocLinksrc="/c/language/declarations">Declarations</DocLink> and <DocLinksrc="/c/language/expressions">expressions</DocLink> create, destroy, access, and manipulate <DocLinksrc="/c/language/object">objects</DocLink>. Each <DocLinksrc="/c/language/object">object</DocLink>, <DocLinksrc="/c/language/functions">function</DocLink>, and <DocLinksrc="/c/language/expressions">expression</DocLink> in C is associated with a <DocLinksrc="/c/language/type">type</DocLink>.
23
+
<DocLinkdest="/c/language/declarations">Declarations</DocLink> and <DocLinkdest="/c/language/expressions">expressions</DocLink> create, destroy, access, and manipulate <DocLinkdest="/c/language/object">objects</DocLink>. Each <DocLinkdest="/c/language/object">object</DocLink>, <DocLinkdest="/c/language/functions">function</DocLink>, and <DocLinkdest="/c/language/expressions">expression</DocLink> in C is associated with a <DocLinkdest="/c/language/type">type</DocLink>.
0 commit comments