In C code, the expression "456" 1 may seem confusing when it outputs "56" instead of "457." To understand this behavior, we must dive into the intricacies of the code.
In C , strings are stored as character arrays, and the literal "456" is equivalent to the array {'4', '5', '6', '
The above is the detailed content of Why does \'456\' 1 output \'56\' in C ?. For more information, please follow other related articles on the PHP Chinese website!