Meaning of String [] in java ???¿
Answers
Answered by
1
Strings, which are widely used in Java programming, are a sequence of characters. In the Java programming language, strings are objects. The Java platform provides the String class to create and manipulate strings
Answered by
1
String[] is a string array which is use to contain string datatypes.
syntax is as follows
String s []={ aish, harshit, sarah};
syntax is as follows
String s []={ aish, harshit, sarah};
Similar questions