What is the printout of the following code?
```
char s2[7] = "Dallas";
char s1[14] = "Dallas";
strcat(s1, s2);
cout << s1;
```
a. Dallas
b. DD
c. DallasDallas
d. D
c. DallasDallas
Computer Science & Information Technology