LEC: 4 | JAVA
LEC:4
String vs Char data type in JAVA
Source Code:
//string -------->alphabets, numeric,special characters
//char , single value store.
//'runway with code';
//char a='h';
String a="runway with code 123 @#! ^ &";
System.out.println(a);
}
}
Comments
Post a Comment