Java tutorial
import java.io.*; public class Main { public static void main(String[] args) { char[] c = { 'a', 'b', 'c', 'd' }; PrintWriter pw = new PrintWriter(System.out); // print char array pw.print(c); // flush the writer pw.flush(); } }