Given a list of characters, merge all of them into a string. in c code example
Example: how to join a list of characters in python
>>> a = ['a', 'b', 'c', 'd']
>>> ''.join(a)
'abcd'
>>> a = ['a', 'b', 'c', 'd']
>>> ''.join(a)
'abcd'