#include<stdio.h>
#include<conio.h>
main()
{
int rem,n;
clrscr();
printf("Enter n : ");
scanf("%d",&n);
while(n>0)
{
rem=n%10;
printf("%d",rem);
n=n/10;
}
getch();
}
#include<stdio.h>
#include<conio.h>
main()
{
int rem,n;
clrscr();
printf("Enter n : ");
scanf("%d",&n);
while(n>0)
{
rem=n%10;
printf("%d",rem);
n=n/10;
}
getch();
}
thanks man….
Glad to know that this is helping you π share this with all your friends.
Thanks its very helpful to me
sir
Thank you Dilip π