10.14 — Default arguments
A is a default value provided for a function parameter. For example: void print(int x, int y=10) // 10 is the default argument { std::cout << “x: ” << x << ‘\n’; std::cout << “y: ” << y << ‘\n’; } When making a function call, the caller can optionally …