Computer Science, asked by mielysolroble, 1 year ago

What is the allocated size of a 3D short array with size 2, 3 and 4 respectively?
Select one:
a. 9,600 bits
b. 2,400 bits
c. None of the choices
d. 900 bits

Answers

Answered by sstudent
0
Hey dude , C is right option
Answered by Arslankincsem
0

Explanation:

If you want to declare a multidimensional array in C, and then you have to use the following syntax

Syntax for the array is type array name [d1][d2][d3]…..[dn[;

In this syntax, d represents dimension. Dn is said to be represented the size of the final dimension.  

Allocated size of 2 is 2,400 while 3 is 9,600. For 4 the allocated size is none of the choices.

Similar questions