Skip to main content

3 docs tagged with "fundamentals"

View all tags

C++ Basic Syntax

C++ syntax defines how code is written and structured. Understanding basic syntax is essential for writing valid C++ programs.

Expressions and Statements

Expressions produce values; statements perform actions. Understanding the distinction is fundamental to C++ programming.

Raw Pointers

A pointer is a variable that stores a memory address, allowing indirect access to other variables.