Reverse of a number

#include<stdio.h>
#include<conio.h>
void main()
{
void rev(int);
int n,d;
clrscr();
printf("enter the number");
scanf("%d",&n);
rev(n);
getch();
}

Comments

Post a Comment