// Pantea Aria // function recap - void function/procedure // Write a function called print_even_or_odd that: // Takes an integer as input // Prints whether the number is even or odd // Does NOT return a value // What is the type of the function? void #include // function prototype int main(void) { int number = 10; // function call print_even_or_odd(number); // prints: 10 is even print_even_or_odd(5); // prints: 5 is odd return 0; } // function definition