What are constant arrays?
If we define
const char hex_char[] = {
'0', '1', '2', '3',
'4', '5', '6', '7',
'8', '9', 'A', 'B',
'C', 'D', 'E', 'F'
};
Then, it should not be modified by program; What does it mean?