I have code:
static uint64_t password = 'password';
GCC say:
warning: character constant too long for its type static uint64_t password = 'password';
If I do so:
static uint64_t password = 'pass';
GCC say:
warning: multi-character character constant [-Wmultichar] static uint64_t password = 'pass';
That is, it turns out that sizeof(char) = 2, but is it not so, or is it not?