#include #include using namespace std; int main() { //Saw this. //The + and * operators are both touching the same operand (2). //Which operator gets to sink its teeth into the 2 first? //Outputs 7 because * has higher precedence than +. cout << 1 + 2 * 3 << "\n"; int i {10}; //The = and * operators are both touching the same operand (2). //Which operator gets to sink its teeth into the 2 first? //The * executes before the = because * has higher precedence than =. i = 2 * 3; //The << and * operators are both touching the same operand (2). //Which operator gets to sink its teeth into the 2 first? //The * executes before the << because * has higher precedence than <<. cout << 2 * 3; cout << "\n"; return EXIT_SUCCESS; }