how to initialize a char in java

Solutions on MaxInterview for how to initialize a char in java by the best coders in the world

showing results for - "how to initialize a char in java"
Lyana
23 Jan 2020
1char c = '\0';
2
Lucas
25 Oct 2019
1//notice the single quotes 
2char myGrade = 'B';