Arrays also degenerate in initializers, _except_ for the special
commit3e6a860453782f9d0ccb30dc4579ab84b3a0afbc
authorLinus Torvalds <torvalds@home.transmeta.com>
Thu, 17 Apr 2003 01:06:33 +0000 (16 18:06 -0700)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Fri, 8 Apr 2005 04:00:35 +0000 (7 21:00 -0700)
treeb2b0cea37e055a46617864acba324086a51f7355
parente966e1154dd7bda1b0bfcdbc6ccc606612fe5a8a
Arrays also degenerate in initializers, _except_ for the special
case of

c[] = "string";

which is just shorthand for

c[] = { 's', ... , '\0' };

and should be handled separately.
evaluate.c