cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
Need help for recursion
Need help for recursion
May 15, 2016 at 7:16pm UTC
Burden
(5)
Implement a function printAllSubsets which takes a string and prints all subsets of the string. For example, if the string was “dog”, the subsets would be:
dog
do
dg
og
d
o
g
void printAllSubsets(string word);
void recPrintAllSubsets(string input, string output);
Topic archived. No new replies allowed.