typedef struct string
{
	char s_array[4];
} String;

int main(void)
{
	String row[5];
	char *s;
	s = row[0].s_array;
	return 0;
}

