Help me in solving GSCP14 problem

My issue

I’m not able to understand the code given in solution.

}

Learning course: [C for problem solving - 1](https://www.codechef.com/learn/c-beginner-v2-p1)
Problem Link: https://www.codechef.com/learn/BC01BC04_V2/problems/GSCP14

@raman067
u have to print the string two times that all with the question.
This is my code for reference hope it will help.
// Update the ‘_’ in the code below

include <stdio.h>
include <string.h>

define MAX_LEN 1001 // maximum length of input string

int main() {
int t;
scanf(“%d”, &t);
char S[MAX_LEN]; // declare a character array to store the input string
for (int i = 0; i < t; i++) {
scanf(“%s”, S); // read in the input string
int len = strlen(S); // get the length of the input string
char X[MAX_LEN * 2]; // declare a character array to store the concatenated string
int j;
for (j = 0; j < len; j++) {
X[j] = S[j]; // copy S into X
}
int k;
for (k = 0; k < len; k++) {
X[k+j] = S[k];// concatenate S with itself
}
X[j+k] = ‘\0’; // terminate the string
printf(“%s\n”, X); // output the concatenated string
}
return 0;
}