What will be displayed by the statements below?

``` char s1[8] = "petunia", s2[9] = "marigold";
char tmp1[10], tmp2[20];
strcpy(tmp2, s1);
strcat(tmp2, s2);
strncpy(tmp1, &tmp2[5], 6);
tmp1[6] = '\0';
printf("b%s\n", tmp1);
```
a. iamari
b. biamari
c. oldpet
d. boldpet
e. none of the above

B

Computer Science & Information Technology

You might also like to view...

Cells that contain formulas that refer to other cells are:

A. Dependent cells B. Precedent cells C. Tracers

Computer Science & Information Technology

You have determined that a video problem is hardware related. The system does not have a separate video adapter card. All cables and the monitor test good. Where is the most likely source of the problem?

A) On the motherboard B) On the sound card C) In RAM D) In the power supply

Computer Science & Information Technology