Write a statement that declares a prototype for a function p
Write a statement that declares a prototype for a function print larger, which has two int parameters and returns no value.
Solution
Here is the prototype for the function,
void printLarger(int a, int b); // return type is void since the function doesnt return anything.
// the two integer parameters are \'a\' and \'b\'
