What will be the output of following java code;

class String_demo
{
public static void main(String args[])
{
char chars[ ] = {'a', 'b', 'c'};
String s = new String(chars);
System.out.println(s);
}
}

Posted on by