Normally in C++
, character arrays are initialized in the following way,
char example[5]="cat";
What if you initialize it with ""
(just a double quotes without spaces)?
What will be the elements in the character array after initialization?