What is the value of variable s after execution of the program fragment below?

```
char h[6] = "wild";
char p[6] = "crazy";
char s[10];

strcpy(s, h);
strcat(s, p);
```
a. "wild crazy"
b. "wild craz"
c. "wildcrazy"
d. The value of s is undefined.
e. none of the above.

C

Computer Science & Information Technology

You might also like to view...

To move an InDesign object to a new layer, select the object on the page, then drag the Indicates selected items icon in the ____ panel to a new layer.

A. Layers B. Pages C. Library D. none of the above

Computer Science & Information Technology

An X.509 v3 certificate binds a ____, which uniquely identifies a certificate entity, to a user's public key.

A. signature B. hash value C. certificate D. distinguished name (DN)

Computer Science & Information Technology