What will be written to the standard output when the following program is run?()
public class Qd803 {
public static void main(String args[]) {
String word = "restructure";
System.out.println(word.substring(2, 3));
}
}
A.est
B.es
C.str
D.st
E.s