Yeah I did, I want like i don't know how to explain them like um basic examples? of what would they do and what would happen because I still havent understood from the page either, Sorry if I'm being too much of effort to you :S
#include <iostream>
int main()
{
bool b1 = true, b2 = false;
if (b1 && b2)
std::cout << "Both bools are true" << std::endl;
if (b1 || b2)
std::cout << "At least one of the 2 bools is true" << std::endl;
}
The output would be "At least one of the 2 bools is true" because both booleans are not true, look at the table that AbstractionAnon has linked.