Inversing of a given Number. suppose we gave input 123456 then the output of the program will be 654321./*mycfiles.wordpress.com
C program to print inverse of a given number*/
#include
#include
void main()
{
long int n,rn=0,d=0;
clrscr();
printf("Enter the number\n\n");
scanf("%ld",&n);
while(n>0)
{
d=n%10;
rn=rn*10+d;
n=n/10;
}
printf("%ld",rn);
getch();
}
Chat with our AI personalities
One way to do this is to convert the number to a String, then use the corresponding String method to find out the length of the String.
see pages 43-49 in Principles of Program design by M. A. Jackson, 1975
wap to print all the arnstrong no. between 100&1000
Q.1 Write a program to print first ten odd natural numbers. Q.2 Write a program to input a number. Print their table. Q.3 Write a function to print a factorial value.
i want to write a simple without using pointer or array c program which will print greatest number when i give 20 number .........How far have you gotten so far?