Examveda

What is the size of an integer array declared as int arr[5] in bytes?

A. 10

B. 20

C. 4

D. 5

Answer: Option B

Solution (By Examveda Team)

The size of an integer array declared as int arr[5] in bytes depends on the size of an integer in the system. Typically, the size of an int is 4 bytes.

Calculation:
The array arr has 5 elements.
Each int is 4 bytes.
Total size = 5 * 4 = 20 bytes
Therefore, the size of int arr[5] is 20 bytes.

This Question Belongs to C Program >> Arrays And Strings

Join The Discussion

Comments (1)

  1. Almahmud Siam
    Almahmud Siam:
    1 year ago

    I think the correct solution is option B.20
    4*5=20 bytes

Related Questions on Arrays and Strings