I have got 3 chat Variables which i want to get combined into one char variable. At the moment the char Variables have fixed values but they should get later on variable values from Inputdevices
You need to allocate an array large enough to hold all of the strings. Then, initialize the new array, and use strcat to copy the existing arrays to the new array.
Or, use the String object, and let it take care of the allocation and copying.