#include<stdio.h> int main(){ int num,r,reverse=0; printf("Enter any number: "); scanf("%d",&num); for(;num!=0;num=num/10){ r=num%10; reverse=reverse*10+r; } printf("Reversed of number: %d",reverse); return 0; }
Filled Under
C
Code for reversing a given number using FOR loop?
Related:

C program to convert binary to octal

C program for hexadecimal to binary conversion

C program to change octal to decimal

C code to convert octal number to decimal number

Convert numbers to roman numerals in c

C code for fractional binary to decimal converter

C code for product of two binary numbers

C code for sum of two binary numbers:
Subscribe to:
Post Comments (Atom)