How 26 i s produsing co?

and how 34 is produsing
these which is in explanation of this smart keypad question???

Hey @kailash_01 its the same as in smart keypad 1 problem ,i.e,
String table[]= { " ", “.+@$”, “abc”, “def”, “ghi”, “jkl” , “mno”, “pqrs” , “tuv”, “wxyz” }.

So 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:- 34
3 => d,e,f
4 => g,h,i
So print all those strings that contain these combinations
dg, dh, di, eg, eh, ei, fg, fh, fi.

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.