Problem Statement
Write a C program that reads an integer from the user and determines whether it is even or odd.
An integer is even if it is divisible by 2 (i.e., the remainder when divided by 2 is zero). Otherwise, it is odd.
This simple exercise will help you practice using the modulus operator (%) along with if statements to make decisions based on numerical properties.