#include <stdio.h>
#include <string.h>

int main(void) {
	char* array[3]; 
	array[0] = malloc(sizeof(char)*6); 
	strncpy(array[0], "hello", sizeof("hello"));
	
	printf("%s\n", array[0]);
	return 0;
}
