Re: msi: Remove tentative definition of static array with no size specifier
2 Apr
2008
2 Apr
'08
11:12 p.m.
Andrew Talbot wrote:
strictly, when the static storage specifier is applied, the size must be specified:
static char ar[5]; /* tentative definition */
static char ar[5] = "hello"; /* actual definition */
Of course, the size need not be specified in the case of the actual definition, so the following is what I should have typed. static char a[] = "hello"; /* actual definition */ -- Andy.
6553
Age (days ago)
6553
Last active (days ago)
0 comments
1 participants
participants (1)
-
Andrew Talbot