Computer Science, asked by ishikapal0283, 2 months ago

Q 7.
The general form of initialization of arrays
is:
data_type —={list of values};
Answer:
A.
variable_name[size]
000
B.
size
ооо
C.
values
000
O
D.
None of these
000​

Answers

Answered by sakash20207
1

Compile-time array initialization.

The initializer list is processed from left to right: the first value is placed in element 0, the second value in element 1, and so on until the last value is placed in the last element. The number of values in the initializer list must be less than or equal to the size of the array.

Similar questions