Statements are fragments of the C program that are executed in sequence. The body of any function is a compound statement, which, in turn is a sequence of statements and declarations:
The following chart contains all 128 ASCII decimal (dec), octal (oct), hexadecimal (hex) and character (ch) codes.
A union is a type consisting of a sequence of members whose storage overlaps (as opposed to struct, which is a type consisting of a sequence of members whose storage is allocated
C source code may be written in any non-ASCII 7-bit character set that includes the
The preprocessor supports conditional compilation of parts of a source file. This behavior is controlled by #if, #else, #elif, #ifdef
Conditionally executes code. Used where code needs to be executed only if some condition is true. Syntax
Declares a member with explicit width, in bits. Adjacent bit field members may be packed to share and straddle the individual bytes. A bit field
Every object in C exists, has a constant address, retains its
Specifies that the function does not return to its point of invocation. Syntax
C programs create, destroy, access, and manipulate objects. An object, in C, is region of
Page 8 of 9