#include <stdio.h>

int main(void) {
	char * cString5 = (char[]){'s','t','r','i','n','g','\0'};
	printf("%s\n", cString5);
	return 0;
}
