So drucken Sie Zeichenfolge aus spezifischem Index -Java
String str = "Grepper";
char ch = str.charAt(0);
//ch is assigned the value of G
Disgusted Dove
String str = "Grepper";
char ch = str.charAt(0);
//ch is assigned the value of G