how to print string from specific index java

50

how to print string from specific index java -

String str = "Grepper";
char ch = str.charAt(0);
//ch is assigned the value of G

Comments

Submit
0 Comments