Function with Default Parameters
Learn about the default parameters of functions.
We'll cover the following...
Challenge
Write a program that defines a function that receives 5 arguments of types char
, int
, long
, float
, and double
in that order. If we call this function in three different ways (once, with values for all five arguments, then with values for only the first four arguments, finally with values for only the first three arguments) the program compiles ...