Contact: aviboots(AT)netvision.net.il
39,868 questions
51,791 answers
573 users
public class MyClass { public static void main(String args[]) { String str = "java c c++"; for (int i = 0; i < str.length(); i++) { char ch = str.charAt(i); System.out.print(ch + " "); } } } /* run: j a v a c c + + */
public class MyClass { public static void main(String args[]) { String str = "java c c++"; for (char ch : str.toCharArray()) { System.out.print(ch + " "); } } } /* run: j a v a c c + + */