Revers program for integer values.

Revers program for integer values.

Program:
#include<stdio.h>
main()
{
int n,x;

printf("Enter your value = ");
scanf("%d", &n);

while (n!=0)
{
x=n%10;
printf("%d", x);
n=n/10;
}
}

Loading
Twitter Delicious Facebook Digg Stumbleupon Favorites More

 
Flying Twitter Bird Widget By ICT Sparkle