Program to find the sum of the subsets of an array
Program to find the sum of the subsets of an array Given an array , Write a Program to find the sum of the subsets of an array . Sample … Read More
Program to find the sum of the subsets of an array Given an array , Write a Program to find the sum of the subsets of an array . Sample … Read More
Program to generate all the subsets of an array Given a list of numbers , write a Program to generate all the subsets of an array. Sample input: 3 1 … Read More
Recursive program to reverse a number Given a number , write a Recursive program to reverse a number . Sample input:- 253 Sample output:- Reverse of 253 is 352 Recursive … Read More
Program to find the minimum element in an array by recursion Given an array , write a Program to find the minimum element in an array by recursion. Sample input:- … Read More
Program to find the largest element in an array by recursion:- Given an array of elements , write a Program to find the largest element in an array by recursion … Read More
Here in this article we will write a Recursive Program to calculate power of a number for this purpose we multiple the number with itself until power become zero. So … Read More
Before going to write a program first we have to know what is friendly pair. what is friendly pair :- Two number n1 and n2 is said to friendly if … Read More
Here in this article we will write program to check that number is abundant or not . So for this first we have to know what is abundant number. What … Read More
What is Automorphic number : – A number is said to be automorphic if it’s square is end with same digits as number itself. for Example:- (5)²= 125 ( since … Read More
Program to check that number is perfect number or not Given a number , write a Program to check that number is perfect number or not. Sample input:- 6 Sample … Read More