I have a question about array initialization
What is the difference between
char a[6]={0};
and
char a[6]={'0','0','0','0','0','0'};
How does the compiler interpret the above two expression? Are they just the same or not??
See Question&Answers more detail:os