how many total no. of bytes are there in the following int ar [25]
Answers
Answered by
2
Answer:
in which programming language ?
for c++ it's 25*4= 100 bytes
Explanation:
because in c++ int is of 4 byte and here array size is 25 therefore total will be 25*4 = 100
Similar questions