Just a quick question for which I fail in finding proper answer.
If I want to declare a const text variable, is it absolutely equal to do:
const char my_variable [] = {'t', 'e', 's', 't', 0};
or
const char my_variable [] = "test";
Many thanks in advance