Object Oriented Programming in C++

📖 Definition:

Used to make decisions in a program.

 
if (age >= 18) {
cout << “Adult”;
} else {
cout << “Minor”;
}