C PROGRAMMING
To See A Brief Description of Each of the Following
Terms or Concepts, Please Click on the Term.
(Sorry, but the links on this page
are not yet operative. -The definitions are on the next page though. Just click
on the next button at the bottom of this page. The terms and concepts on this
page are taken from Chapter 2 through Chapter 7).
INTRODUCTION
TO C PROGRAMMING
|
Comments |
|
preprocessor directive |
|
function main |
|
printf |
|
conversion specifier |
|
scanf |
|
ampersand |
|
variables |
|
Identifiers |
|
case sensitive |
|
assignment |
|
variable |
|
destructive read-in. |
|
non-destructive read-out. |
|
Arithmetic expressions |
|
operator precedence and associativity. |
|
if statement |
|
Conditions
|
zero (false) |
|
nonzero (true) |
|
STRUCTURED
PROGRAM DEVELOPMENT
|
algorithm |
|
program control. |
|
Pseudocode |
|
selection structure |
|
repetition structure |
|
flowchart |
|
floating-point number |
|
cast operator |
|
promotion (also called implicit conversion) |
|
assignment operators |
|
increment operator, ++, and
the decrement operator, -- |
PROGRAM
CONTROL
|
loop |
|
counter-controlled repetition |
|
sentinel-controlled repetition. |
|
for repetition structure |
|
do/while repetition structure |
|
break statement |
|
continue statement |
|
switch statement |
|
getchar function |
|
EOF character |
|
Logical operators |
FUNCTIONS
|