下面程序段输出的结果是? 
int i=2,b,c;int[] a=new int[3]; 
b=a[i]; 
c=b+i; 
System.out.println(c);
A 0
B 2
C 4
D 1