How many bytes are required to store an array declared as int a[5][3] ?
Answers
Answered by
6
Answer:
What is an array?
An array is a collection of similar type data . When you declare it (create a memory) for the array you need to mention the size of the array inside “[]” square brackets.
Exact Answer for you :
You wanna declare an array with 55 elements as
double A[55];
This will create in memory as
A[0] , A[2] …. A[54]
So, each double is having 8 bytes (Almost every compiler *May differ)
So that,
55*8 = 440 bytes
Answered by
0
Answer:
5×3=15
4 space=55
Explanation:
55 bytes
Similar questions
Environmental Sciences,
1 day ago
Environmental Sciences,
1 day ago
Sociology,
2 days ago
Science,
8 months ago
Math,
8 months ago