Question: Given a string in C++ such as BCDAG and a number k . Write a function in C++ that breaks this string up into

Given a string in C++ such as " BCDAG" and a number k . Write a function in C++ that breaks this string up into strings of all posible combinations of size k and print it out with a space between them. Note the output must not be characters but srings.

Eg If k=2, the strings produced should be "BC" "CD" "DA" and "AG" .

NOTE:Only use For loops/conditional statements to solve this problem.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!