how to write code to reverse given number in c program using function with comments
#include<stdio.h> //including header files
#include<conio.h>
long int reverse(long int); // declaring function with parameter
void main() // start main
{
long int n;
clrscr();
printf("enter...
C program code for reverse number using function with while loop
