Statements
  • References/C, C++/C/C language

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:

2025-01-10 15:47:30
ASCII Chart
  • References/C, C++/C/C language

The following chart contains all 128 ASCII decimal (dec), octal (oct), hexadecimal (hex) and character (ch) codes.

2025-01-10 15:47:30
Union declaration
  • References/C, C++/C/C language

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

2025-01-10 15:47:30
Alternative operator representations
  • References/C, C++/C/C language

C source code may be written in any non-ASCII 7-bit character set that includes the

2025-01-10 15:47:30
Conditional inclusion
  • References/C, C++/C/C language

The preprocessor supports conditional compilation of parts of a source file. This behavior is controlled by #if, #else, #elif, #ifdef

2025-01-10 15:47:30
if statement
  • References/C, C++/C/C language

Conditionally executes code. Used where code needs to be executed only if some condition is true. Syntax

2025-01-10 15:47:30
Bit fields
  • References/C, C++/C/C language

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

2025-01-10 15:47:30
Lifetime
  • References/C, C++/C/C language

Every object in C exists, has a constant address, retains its

2025-01-10 15:47:30
_Noreturn function specifier
  • References/C, C++/C/C language

Specifies that the function does not return to its point of invocation. Syntax

2025-01-10 15:47:30
Objects and alignment
  • References/C, C++/C/C language

C programs create, destroy, access, and manipulate objects. An object, in C, is region of

2025-01-10 15:47:30