Problem Statement
Write a C program that asks the user to enter a 4-digit integer and then prints its digits in reverse order using a loop.
Requirements:
- Use arithmetic operators
/and%. - Implement a loop to reverse the digits.
Example:
Input: 1234 Output: Reversed number: 4321