pc-ip-02.c¶
Problem Statement
Question 2: Write a program to reverse a non-negative integer using a function.
Metadata¶
| Property | Detail |
|---|---|
| Author | Amit Dutta (amitdutta4255@gmail.com) |
| License | MIT |
Actions¶
💡 You can print or save this file by opening Raw and using your browser.
Source Code¶
#include <stdio.h>
int reverse(int);
int main()
{
int num;
printf("Enter the number: ");
scanf("%d", &num);
if (num < 0)
{
printf("\nOnly poitive integers are allowed.");
return 1;
}
printf("\nReverse of input %d is : %d", num, reverse(num));
return 0;
}
int reverse(int num)
{
int result = 0;
while (num > 0)
{
result = (result * 10) + (num % 10);
num /= 10;
}
return result;
}