What would be the output of the following program ?

		
					

Loading

โœช Choose the correct option.

What would be the output of the following program ?

class test {
public static void main(String[] args) {
for(int i=0;i<=args.length;i++);
System.out.println(args[i]);
}
}

A. No output
B. compile time error
C. Array index out of bound exception
D. None of these