单项选择题下列常见的系统定义的异常中,哪个是数组越界异常A)ArrayIndexOutOfBoundsExceptionB)IOExceptionC)NullPointerExceptionD)ArithmeticException
单项选择题有以下程序: #include <stdio.h> main() char b,c; int i; b='a'; c='A'; for (i=0; i<6; i++) if(i%2) putchar(i+b); else putchar(i+c); printf( n ); 程序运行后输出的结果是( )。