When i made a char type array and tried to print the default value the output screen was blank where as in int type and float type arrays the default value were printed i.e 0 and 0.0 respectively.So i wanted to know the default value of char type array.
Default value of char type array
Default value of char array is ‘\0’. But when you print it nothing will be printed.
Eg:
char c = ‘\0’;
System.out.println©;
You can see nothing is printed on console because \0 means NULL character.