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
const char S[] = "ABCD";
This should work. i use this notation only and it works perfectly fine for me. I don't know how you are using.