What will be in str1?

```
char str1[30] = “C++”;
char str2[30] = “is fun!”;
strcat(str1, str2);

```

A. C++ is fun!
B. C++is fun!
C. is fun!C++
D. fun! isC++

B. C++is fun!

Computer Science & Information Technology

You might also like to view...

Any problem that can be solved with recursion can also be solved with a(n)___________________.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

Modify Exercise 30.10 to rotate the cube in response to the user moving the mouse. The cube should rotate in the direction the user drags the mouse. [Hint: Use the ONMOUSEDOWN event to determine when the user begins a drag and use the ONMOUSEUP event to determine when the drag operation terminates.]

What will be an ideal response?

Computer Science & Information Technology