how to initialize char in java

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

showing results for - "how to initialize char in java"
Pablo
07 Oct 2017
1char c = '\0';
2
Gael
26 Apr 2016
1//notice the single quotes 
2char myGrade = 'B';