;
Hi, when I ran this program, why it printed the the contents of the character array? I think that in C a character array must have a NULL character at the end to become a string constant.
in your memory cells after 'u' filled \0 's, in this case your are lucky, but it is not safe, in most cases there is strange characters appear till \0 found
char s[] = "you";
Обсуждают сегодня