My issue
even after answer is correct ,it says wrong answer.
My code
#include<stdio.h>
int main()
{
char a[20] = "Good ";
char b[4] ="Work";
strcat(a,b);
printf("%s",a);
}
Learning course: Learn C
Problem Link: Concatenation Practice Problem in C - CodeChef