📝 C++ Conditional Statements

Conditional statements control how your program behaves based on certain conditions. C++ supports if, else if, else, and switch for decision-making.

📚 Example Code: Using If-Else

Console output will appear here...
💡 Tip: Always remember to use { } braces for multiple statements inside if, else if, or else blocks — even though it's optional for single lines.

🔧 C++ Condition Operators

📂 Example: Switch Statement

Console output will appear here...
⚠️ Don't forget: Always use break in each case inside a switch, or it'll "fall through" to the next case.