nWhen the AND
(&&) is used with two simple expressions,
the condition is true only if both individual
expressions are true by themselves.
n(age > 40)
&& (term < 10)
n if ( ( x > 0)
&& ( (y –x) > 3 ) )
n cout << “Good
Morning!” << endl;
n cout << “Good
Afternoon!” << endl;
n//will print: Good Afternoon!
n