This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class string | |
{ | |
public static void main(String args[]) | |
{ | |
char arr[]={'r','o','h','i','t'}; | |
String s=new String(arr); | |
String s1=new String(arr); | |
System.out.println(s); | |
System.out.println(s1); | |
} |