I want to do the following
char a[] = { \'A\', \'B\', \'C\', \'D\'};
But I do not want to write these characters separately. I want somethi
Weird error.
Can you test this?
const char* const S = "ABCD"; char t[] = { S[0], S[1], S[2], S[3] }; char u[] = { S[3], S[2], S[1], S[0] };