Write a statement that declares a prototype for a function printErrorDescription , which has an int parameter and returns nothing.
LANGUAGE: C++
CHALLENGE:
Write a statement that declares a prototype for a function printErrorDescription , which has an int parameter and returns nothing.
SOLUTION:
void printErrorDescription(int);