Memory model
  • References/C, C++/C/C language

Defines the semantics of computer memory storage for the purpose of the C abstract machine. The data storage (memory) available to a C program

2025-01-10 15:47:30
#define directive
  • References/C, C++/C/C language

The preprocessor supports text macro replacement and function-like text macro replacement. Syntax

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

A function definition associates the function body (a sequence of declarations and statements) with the function name and parameter list. Unlike

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

Declares an inline function.

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

A declaration is a C language construct that introduces one or more identifiers

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

Syntax ' c-char ' (1)

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

Queries size of the object or type. Used when actual size of the object must be known. Syntax

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

Escape sequences are used to represent certain special characters within

2025-01-10 15:47:30
#error directive
  • References/C, C++/C/C language

Shows the given error message and renders the program ill-formed. Syntax

2025-01-10 15:47:30
#line directive
  • References/C, C++/C/C language

Changes the current line number and file name in the preprocessor. Syntax

2025-01-10 15:47:30