adplus-dvertising
frame-decoration

Question

What is the size of an array in the below C program statement?
int main()
{
    int ary[9];
    return 0;
}

a.

8

b.

9

c.

10

d.

None of the above

Posted under C Programming

Answer: (b).9

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the size of an array in the below C program statement?