Q. What is the size of an int[10] array? (A) 10 (B) 20 (C) Depends on compiler (D) 10 * sizeof(int) ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (D) 10 * sizeof(int) Explanation: Array size depends on the element type and number of elements.