Are the following two declarations the same

```
char city[] = {'D', 'a', 'l', 'l', 'a', 's'};
char city[] = "Dallas";
```

A. yes
B. no


B. no

Computer Science & Information Technology

You might also like to view...

Each of the following lines of code purport to round the results of the division of doubles to the nearest integer value (but still of type double). All are correct C++ code but some do not round correctly. Tell which rounds down, up, or to the nearest integer value, or is not reasonable Assume that math.h has been included, and that all variables have appropriate values. double x, y, z;

a) z = ceil(x/y); b) z = ceil(x/y-0.5); c) z = floor(x/y-0.5); d) z = floor(x/y+0.5); e) z = floor(x/y);

Computer Science & Information Technology

Choose the elements that are used in a description list.

a. dt b. dl c. dd d. all of the above

Computer Science & Information Technology

____________________ are predesigned graphic styles that you can apply to existing slides.

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

Computer Science & Information Technology

A(n) ____ loop is one that performs no actions other than looping.

A. nested B. do-nothing C. indefinite D. posttest

Computer Science & Information Technology