Can you help me i am unable to understand the problem

Given a long vector of strings, print the strings that contain the strings generated by numeric string str.

string searchIn [] = {
“prateek”, “sneha”, “deepak”, “arnav”, “shikha”, “palak”,
“utkarsh”, “divyam”, “vidhi”, “sparsh”, “akku”
};
For example, if the input is 26 and the string is coding, then output should be coding since 26 can produce co which is contained in coding.

refer this https://ide.codingblocks.com/s/581119

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 you only need to print strings from these only
string searchIn [] = {
“prateek”, “sneha”, “deepak”, “arnav”, “shikha”, “palak”,
“utkarsh”, “divyam”, “vidhi”, “sparsh”, “akku”
};

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.