Skip to content

Commit a18e661

Browse files
authored
fix(c.lang): fixed for dup
1 parent d038c9c commit a18e661

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/content/docs/c/language/basic_concepts.mdx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,6 @@ import DocLink from "@components/DocLink.astro";
1212

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

15-
A C program is a sequence of text files (typically header and source files) that coimport DocLink from "@components/DocLink.astro";
16-
17-
# Basic concepts
18-
19-
This section provides definitions for the specific terminology and the concepts used when describing the C programming language.
20-
2115
A C program is a sequence of text files (typically header and source files) that contain <DocLink src="/c/language/declarations">declarations</DocLink>. They undergo <DocLink src="/c/language/translation_phases">translation</DocLink> to become an executable program, which is executed when the OS calls its <DocLink src="/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).
2216

2317
Certain words in a C program have special meaning, they are <DocLink src="/c/keyword">keywords</DocLink>. Others can be used as <DocLink src="/c/language/identifier">identifiers</DocLink>, which may be used to identify <DocLink src="/c/language/object">objects</DocLink>, <DocLink src="/c/language/functions">functions</DocLink>, <DocLink src="/c/language/struct">struct</DocLink>, <DocLink src="/c/language/union">union</DocLink>, or <DocLink src="/c/language/enum">enumeration</DocLink> tags, their members, <DocLink src="/c/language/typedef">typedef</DocLink> names, <DocLink src="/c/language/statements">labels</DocLink>, or <DocLink src="/c/preprocessor/replace">macros</DocLink>.

0 commit comments

Comments
 (0)