I was trying to create a program that takes in two arrays and concatenates them to create a new string. These are the two strings.
char a[8]={"hellostr"};
char b[8]={"HELLOSTR"};
Can someone tell me how could I concatenate and display this concatenated string? I tried looking for it but could not understand much of it.