#include
int main()
{
int n;
Printf("Enter the Number you want to Reverse");
Scanf("%d",&n);
printf("\n The Reverse number of the Given NUmber is:");
n=n%10;
printf("%d",n);
}
OUTPUT
Enter the Number you want to Reverse 567446874
The Reverse number of the Given NUmber is: 478644765
Thanks,
Tushar Khoje
No comments:
Post a Comment