Explanation of Doubt

I’m not able to understand what we have to do exactly

Hello @vanshika1205

// Coding should not be printed in the example as it is Not in the searchIn array.
// Read further for clarity

In this question you need to print those strings (from searchIn array) that contain the strings generated by the alphabetical combination of number given as the input

Ex:- 26
2 => a,b,c
6 => m,n,o
So print all those strings that contain these combinations
am, an, ao, bm, bn, bo, cm, cn, co

divyam is printed as it contains “am” in it.
Also coding should Not be printed as it is Not in the searchIn array

You only need to print strings from these only
string searchIn [] = {
“prateek”, “sneha”, “deepak”, “arnav”, “shikha”, “palak”,
“utkarsh”, “divyam”, “vidhi”, “sparsh”, “akku”
};

Let me know if you still need any help.