单选题 给出下列的程序,其叙述正确的是( )。     public class Man {       static int arr[ ] = new int[10];       public static void main(String a[ ] ) {        System.out.println(arr[1] );       }     }
【正确答案】 C
【答案解析】由于数组元素是整型,所以其初始值为0。