Question: Write a non-recursive program to store all possible strings of length 'k' in an array, that can be formed from a set of 'n' characters

Write a non-recursive program to store all possible strings of length 'k' in an array, that can be formed from a set of 'n' characters in C language. The program must NOT be recursive.

For example,

Given n = 4, k = 3.

Set of characters = {'A', 'C', 'G', 'T'}

The output array should store all the 3 letter combinations of these. There will be 64 combinations.

AAA

AAC

AAT

AAG

....... (total 64 combinations)

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!