In the first part of this series, we covered the basics of pointers in C, and went on to more complex arrangements and pointer arithmetic in the second part. Both times, we focused solely on pointers ...
Write a function isEven, which accepts an integer as a parameter and returns 1 if the number is even and 0 otherwise. Use this function in main to accept n numbers and check if they are even or odd.