1.10 — Introduction to expressions
Expressions Consider the following series of statements, each of which defines a variable and initializes it: // five() is a function that returns the value 5 int five() { return 5; } int main() { int a{ 2 }; // initialize variable a with literal value 2 int b{ 2 …