My issue
haven’t unserstand the method to devolp a space blw the words.
My code
#include <stdio.h>
int main(void) {
char x[] = "Hello";
char y[] = "World";
strcat(strcat(x," "),y);
printf("%s", x);
return 0;
}
Learning course: Learn C
Problem Link: CodeChef: Practical coding for everyone