Write a C program to print series of reverse number upto 1 using functions

#include<stdio.h> #include<conio.h> void printn(int n) {          printf(“%d\n”,n);             if(n!=1)            {                    ...