212k views
1 vote
An array in c++ is decleared as ''float split[31][13][23] How many bytes does it occupy in memory?​

1 Answer

0 votes

Answer:

Size of array = size of each element * total number of elements

Step-by-step explanation:

array occupies 38,332 bytes (or approximately 37.4 KB) of memory in C++

User Nedudi
by
7.9k points