void printErrorDescription ( int ) ;
2. Write a statement that declares a prototype for a function printLarger , which has two int parameters and returns no value.
void printLarger ( int , int ) ;
3. Write a statement that declares a prototype for a function twice , which has an int parameter and returns an int .
int twice ( int ) ;
Write a statement that declares a prototype for a function powerTo, which has two parameters. The first is a double and the second is an int. The function returns a double.
ReplyDeletedouble powerTo(double, int);.