Print all possible strings (Function Problem)
PROBLEM : Given a string str your task is to complete the function printSpaceString which takes only one argument the string str and prints all possible strings that can be made by placing spaces (zero or one) in between them. For eg . for the string abc all valid strings will be abc ab c a bc a b c Input: The First line of input takes an integer T denoting the number of test cases . Then T test cases follow . Each line of test case contains a string str . Output: For each test case output the strings possible in a single line separated by a "$" Constraints: 1<=T<=100 1<=length of string str <=100 Example: Input 1 abc Output abc$ab c$a bc$a b c$ ---------------------------------------------------------------...