6_4_5_08_wide_string_array_init.c (253B)
1 #include <stddef.h> 2 3 wchar_t g[4] = {L"\x2a"}; 4 5 int test_main(void) { 6 wchar_t l[3] = L"*"; 7 return sizeof(g) == 16 && g[0] == 42 && g[1] == 0 && g[3] == 0 && 8 l[0] == 42 && l[1] == 0 && l[2] == 0 9 ? 42 10 : 0; 11 }