C
C
C
4. **Operators in C++:**
- **Arithmetic Operators:** Addition (+), Subtraction (-), Multiplication (*), Division (/), Modulus
(%).
- **Relational Operators:** Equality (==), Inequality (!=), Greater than (>), Less than (<), Greater
than or equal to (>=), Less than or equal to (<=).
- **Logical Operators:** AND (&&), OR (||), NOT (!).
- **Assignment Operators:** Assignment (=), Addition and assignment (+=), Subtraction and
assignment (-=), Multiplication and assignment (*=), Division and assignment (/=).
- **Increment and Decrement Operators:** Increment (++), Decrement (--).
- **Bitwise Operators:** AND (&), OR (|), XOR (^), Shift left (<<), Shift right (>>).
5. **IO functions of C++:**
- **Input Functions:** `cin`, `getline()`, `get()`, `read()`.
- **Output Functions:** `cout`, `put()`, `write()`.
- **Formatted Input/Output:** `setw()`, `setprecision()`, `setfill()`, `endl`, `setw()`.
- **File Input/Output:** `ifstream`, `ofstream`, `fstream`.
These topics cover fundamental concepts of programming in C++, including OOP principles, data
types, operators, and input/output operations. If you need further clarification on any topic or want
to delve deeper into specific examples, feel free to ask!