#include <wchar.h>
#include <stdio.h>

int main(void) {
	
	char* s1 = "\0H\0e\0l\0l\0o";
	char* s2 = "H\0e\0l\0l\0o\0";
	
	wprintf((const wchar_t*) s1);
	wprintf((const wchar_t*) s2);
	
	printf("\n--------\n");
	const wchar_t* ws1 = (const wchar_t*) s1;
	for (int i = 0; i < 5; i++) {
		printf("%d ", ws1[i]);
	}
	printf("\n");
	const wchar_t* ws2 = (const wchar_t*) s2;
	for (int i = 0; i < 5; i++) {
		printf("%d ", ws2[i]);
	}
	printf("\n--------\n");
	return 0;
}
