Posted inProg. in C Write a c program to print numbers using recursion. #include<stdio.h> #include<conio.h> void print(int n); // function declaration void main() { int n; printf("Enter the… Posted by dipak May 27, 2024
Posted inProg. in C Write a c program to print 1 to n numbers using recursion. #include<stdio.h> #include<conio.h> void print(int x,int n); // declaration of function void main() { int n; … Posted by dipak May 27, 2024
Posted inProg. in C Write a C Program to find whether the entered number is even, odd. Write a C Program to find whether the entered number is even, odd . #include<stdio.h> #include<conio.h> void main() { int a; … Posted by dipak December 10, 2023
Posted inProg. in C C Program to find the sum of digits of the number entered. C Program to find the sum of digits of the number with full explanation of the program. #include<stdio.h> #include<conio.h> int sumdig(int n); void main() { int… Posted by dipak December 2, 2023