[net.unix-wizards] array indexing in C initializations

arf (09/01/82)

Is there a good reason why the C compilers won't allow the following
initialization?

	char *a[] = { "hello" };
	char *p[] = { a[0] };

/alan feuer (eagle!arf)