Insert a character in String at a Given Position
Given a string s, a character c and an integer position pos, the task is to insert the character c into the string s at the specified position pos. Examples: Input: s = "Geeks", c = 'A', pos = 3Output: GeeAks Input: s = "HelloWorld", c = '!', pos = 5Output: Hello!World Table of Content [Approach-1]