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