Array declaration
  • References/C, C++/C/C language

Array is a type consisting of a contiguously allocated nonempty sequence of objects with a particular element type. The number of those objects (the array size) never

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

Every C program contains the definition (not the prototype) of a function called main, which is the designated start of the program.

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

A collection of operators that do not fit into any of the other major categories.

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
goto statement
  • References/C, C++/C/C language

Transfers control unconditionally to the desired location. Used when it is otherwise impossible to transfer control to the desired location

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

Constructs an unnamed object of specified character array type in-place, used when a character string needs to be embedded in source code.

2025-01-10 15:47:30
Order of evaluation
  • References/C, C++/C/C language

Order of evaluation of the operands of any C operator, including the order of evaluation of function arguments in a function-call expression, and the order of evaluation of

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
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