#include <stdio.h> int main(void){ char x [] = "hello world."; printf("%s \n", &x[0]); return 0; }
"hello world."
when i use non-ascii character for defining global array, for example:
const char table[] = {[L'?'] = 'c', ...};