String s="Welcome to Java Programming"; char arr[]=s.toCharArray(); for(int i=0;i<arr.length;i++){ System.out.println("Data at ["+i+"]="+arr[i]); }