Today will discuss the basic concept and simplest way to how to reverse a number in c by programming and how to make c program for reverse of a number without array in c program
Write a program to reverse a number
int main(void)
{
int n, r=0,d;
clrscr();
printf(“Enter the numbern”);
scanf(“%d”,&n);
printf(“Number befour reverse= %d “,n);
while(n>0){
d= n%10;
r= r*10+d;
n=n/10;
}
printf(“Number After reverse= %d”, r);
return 0;
}
1234
Number befour reverse= 1234
Number After reverse= 4321
Program to count no of digit to a number
int main(void)
{
int n, c=0,d;
clrscr();
printf(“Enter the numbern”);
scanf(“%d”,&n);
while(n>0){
d= n%10;
n=n/10;
c++;
}
printf(“The entered number has %d digits”, c);
return 0;
}
1234
The entered number has 4 digits
I make this programming and hope you are like the post if are you like the post you can please comment and Share the post to reach more people.
If any doubt about this c programming code or input & output please comment below
If you have another question about c programming send an email by contacting us form are given on the page right side.
I am Try to Help in your Programming Language by Programming Shortcut
Please share your experience about this post,
Thank You!