Which of these array definitions will set all the indexed variables to 0?
a)```
int array[5];
```
b)```
int array[5] = {0};
```
c)```
int array[5] = {0,1,2,3,4};
```
d)```
int array[5] = {0,0,0};x
<<;What is the x?
```
e)```
int array[5] = {0,0,0,0,0};x
<
b), d) and e)
Computer Science & Information Technology
You might also like to view...
Which of the following describes the way lookup fields are displayed in datasheets and forms?
A) Layout choice B) Combo box C) Dialog box D) Selection form
Computer Science & Information Technology
In the Chart Layouts group under the Chart Tools contextual tabs on the Design tab. The chart layouts are available
Indicate whether the statement is true or false.
Computer Science & Information Technology