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

You might also like to view...

Many built-in styles are based on the Normal style

Indicate whether the statement is true or false

Computer Science & Information Technology

Which of the following JavaScript keywords is used in a declaration?

A) name B) alert C) this D) var

Computer Science & Information Technology