// Inputs numbers and tells if odd or even #include using namespace std; int even(int); // the prototype for function even int main() { int num; cout<<"Enter a number:"; cin>>num; if (even(num)) // call function even passing num cout<