error: initialization of 'char' from 'char *' makes integer from pointer without a cast [-Werror=int-conversion]Here, we want #a to have the same semantics as Hi yo = {"yo"};with an array value accepted in place of a string literal char array.C appears more lenient than C++ in what is currently accepted here(#a is accepted with a warning in gcc and clang, without e.g. -pedantic).Specifically, can we specify the desired no-decay and array copy for #a ?