how to acces every char of a String in java
class Main { // Iterate over the characters of a string public static void main(String[] args) { String s = "Techie Delight"; // using simple for-loop for (int i = 0; i < s.length(); i++) { System.out.print(s.charAt(i)); } } }