C program to create a subsets using backtracking method.

The subset sum problem asks: given a set of integers and a target sum, find all subsets of the set whose elements add up to the target. It is a classic application of backtracking — a systematic method that builds candidates incrementally and abandons a partial candidate (“prunes”) as soon as it determines the candidate …