Write a statement that declares a prototype for a function printLarger , which has two int parameters and returns no value.
LANGUAGE: C++
CHALLENGE:
Write a statement that declares a prototype for a function printLarger , which has two int parameters and returns no value.
SOLUTION:
void printLarger(int,int);