<section|Terminology>
<\description-compact>
+ <item*|assignment>An expression in which a variable is set to a value.
+ For example, in the expression <hgroup|<cpp|x = 1>>, the variable <cpp|x>
+ is set to the value <cpp|1> because <cpp|x> is to the left of the equals
+ sign \ \P<cpp|=>\Q. The value of the entire expression is equal to the
+ value of the left hand side (i.e. <cpp|x> in this example) after the
+ assignment is performed. For example, the following C code will print
+ \P<cpp|true>\Q:
+
+ <\cpp-code>
+ #include \<less\>stdio.h\<gtr\>
+
+ int main() {
+
+ \ \ int c;
+
+ \ \ if( (c = 7) == 7 )
+
+ \ \ \ \ printf("true");
+
+ \ \ else
+
+ \ \ \ \ printf("false");
+
+ };
+ </cpp-code>
+
+ As another example, the following lines are equivalent:
+
+ <\cpp-code>
+ a = b = c = 0;
+
+ a = ( b = ( c = 0 ) );
+ </cpp-code>
+
<item*|declaration<label|term declaration>>A construct that establishes
an association between a particular variable, function, or type and its
attributes. (See <hlink|cppreference.com|https://en.cppreference.com/w/c/language/declarations>
same associations as a declaration but also causes storage to be
allocated for the variable. (See <hlink|microsoft.com|https://docs.microsoft.com/en-us/cpp/c-language/c-declarations-and-definitions>).
+ <item*|delinter><label|term_delinter> A source code analysis program
+ designed to detect common syntactic errors.
+
<item*|enumeration<label|term enumeration>><hlink|Enumeration|https://en.wikipedia.org/wiki/Enumeration>
(or <code*|enum>) is a user defined data type in <name|C>. It is mainly
used to assign names to integral constants. For example, the declaration
\;
- \;
+ <chapter|Utilities>
+
+ <section|Text Editor>
+
+ <\itemize>
+ <item><name|Emacs> - GNU text editor. See
+ <hlinkv|https://www.gnu.org/software/emacs/>.
+
+ <item><name|Vim> - text editor See <hlinkv|https://www.vim.org/>.
+ </itemize>
+
+ <section|Linter>
+
+ (TODO: Insert C language linter here)
\;
</body>
<associate|auto-2|<tuple|1.1|?>>
<associate|auto-3|<tuple|1.2|?>>
<associate|auto-4|<tuple|1.2.1|?>>
- <associate|footnote-1|<tuple|1|?>>
+ <associate|auto-5|<tuple|2|?>>
+ <associate|auto-6|<tuple|2.1|?>>
+ <associate|auto-7|<tuple|2.2|?>>
<associate|footnote-1.1.1|<tuple|1.1.1|?>>
<associate|footnote-1.2.1|<tuple|1.2.1|?>>
<associate|footnote-1.2.2|<tuple|1.2.2|?>>
<associate|func getchar|<tuple|1.2.1|?>>
<associate|func putchar|<tuple|3|?>>
<associate|ref includehelp-oct-hex|<tuple|1.1.1|?>>
- <associate|term declaration|<tuple|1.1|?>>
+ <associate|term declaration|<tuple|assignment|?>>
<associate|term definition|<tuple|declaration<label|term declaration>|?>>
- <associate|term enumeration|<tuple|definition<label|term definition>|?>>
+ <associate|term enumeration|<tuple|delinter|?>>
<associate|term escape_sequence|<tuple|enumeration<label|term
enumeration>|?>>
<associate|term garbage_collection|<tuple|<with|mode|<quote|prog>|prog-language|<quote|cpp>|font-family|<quote|rm>|\\x><with|font-shape|<quote|italic>|hh>|?>>
<associate|term struct|<tuple|<label|term stack>stack|?>>
<associate|term structure_assignment|<tuple|<label|term struct>struct|?>>
<associate|term text_stream|<tuple|structure assignment|?>>
+ <associate|term_delinter|<tuple|delinter|?>>
</collection>
</references>