473,473 Members | 2,169 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

extra comma

Hi all,

why does C language permits an extra comma in initializer list

ex:- int days[] = {
31,28.31,30,31,30,
31,31,30,31,30,31,
}
i have heard it is for the purpose of automatic code generation
is there any other purpose than this, if so why ...????
Feb 16 '08 #1
22 3551
aa*****@gmail.com said:
Hi all,

why does C language permits an extra comma in initializer list

ex:- int days[] = {
31,28.31,30,31,30,
Between 31 and 28 you meant ,, not ..
31,31,30,31,30,31,
}
i have heard it is for the purpose of automatic code generation
That's supposed to be the reasoning behind such lamenesses, yes. But
observe:

i = 0;
printf(" %d", day[i]);
while(i++ < 12)
{
printf(", %d%s", day[i], (i % 6) == 5 ? "\n" : "");
}

So, as you can see, it isn't actually difficult to generate the code
without the trailing comma.
is there any other purpose than this, if so why ...????
No, it's just catering for the lazy.

--
Richard Heathfield <http://www.cpax.org.uk>
Email: -http://www. +rjh@
Google users: <http://www.cpax.org.uk/prg/writings/googly.php>
"Usenet is a strange place" - dmr 29 July 1999
Feb 16 '08 #2
On Feb 16, 7:14 pm, Richard Heathfield <r...@see.sig.invalidwrote:
aark...@gmail.com said:
Hi all,
why does C language permits an extra comma in initializer list
ex:- int days[] = {
31,28.31,30,31,30,

Between 31 and 28 you meant ,, not ..
How do you know? 28.31 is a valid value for initializing in integer
context.
>
31,31,30,31,30,31,
}
i have heard it is for the purpose of automatic code generation

That's supposed to be the reasoning behind such lamenesses, yes. But
observe:

i = 0;
printf(" %d", day[i]);
while(i++ < 12)
{
printf(", %d%s", day[i], (i % 6) == 5 ? "\n" : "");

}

So, as you can see, it isn't actually difficult to generate the code
without the trailing comma.
Modulus or even the conditional check could be expensive somewhere I
guess.
Notice it's not only allowed in an "initializer list" but anywhere
where {elements} is used. (I don't know the proper term for it)
For example, printf("%zu\n", sizeof (char[]){1,2,3,});
Feb 16 '08 #3
On Feb 16, 4:55*pm, aark...@gmail.com wrote:
why does C language permits an extra comma in initializer list
...
*i have heard it is for the purpose of automatic code generation
is there any other purpose than this, if so why ...????
According to K&R2 (p196) it is "a nicety for neat formatting."

--
Martin
Feb 16 '08 #4
vi******@gmail.com said:
On Feb 16, 7:14 pm, Richard Heathfield <r...@see.sig.invalidwrote:
>aark...@gmail.com said:
Hi all,
why does C language permits an extra comma in initializer list
ex:- int days[] = {
31,28.31,30,31,30,

Between 31 and 28 you meant ,, not ..
How do you know?
Call me psychic if you like.
28.31 is a valid value for initializing in integer
context.
Yes, but on this occasion it was not what was intended.

<snip>
>So, as you can see, it isn't actually difficult to generate the code
without the trailing comma.
Modulus or even the conditional check could be expensive somewhere I
guess.
My % could have been avoided if necessary, but in any case it was to deal
with the newline, not the comma.

--
Richard Heathfield <http://www.cpax.org.uk>
Email: -http://www. +rjh@
Google users: <http://www.cpax.org.uk/prg/writings/googly.php>
"Usenet is a strange place" - dmr 29 July 1999
Feb 16 '08 #5
Richard Heathfield <rj*@see.sig.invalidwrites:
aa*****@gmail.com said:
>why does C language permits an extra comma in initializer list
i have heard it is for the purpose of automatic code generation

That's supposed to be the reasoning behind such lamenesses, yes. But
observe:

i = 0;
printf(" %d", day[i]);
while(i++ < 12)
{
printf(", %d%s", day[i], (i % 6) == 5 ? "\n" : "");
}
Observe:

int array[] = {
#ifdef ELEMENT_ONE
1,
#endif
#ifdef ELEMENT_TWO
2,
#endif
#ifdef ELEMENT_THREE
3,
#endif
#ifdef ELEMENT_FOUR
4,
#endif
};

versus:

int array[] = {
#ifdef ELEMENT_ONE
1
# if (defined(ELEMENT_TWO) || defined(ELEMENT_THREE) \
|| defined(ELEMENT_FOUR))
,
# endif
#endif
#ifdef ELEMENT_TWO
2,
# if defined(ELEMENT_THREE) || defined(ELEMENT_FOUR)
,
# endif
#endif
#ifdef ELEMENT_THREE
3
# if defined(ELEMENT_FOUR)
,
# endif
#endif
#ifdef ELEMENT_FOUR
4,
#endif
};

I know which one I would prefer to maintain.
--
"The expression isn't unclear *at all* and only an expert could actually
have doubts about it"
--Dan Pop
Feb 16 '08 #6
Ben Pfaff said:
Richard Heathfield <rj*@see.sig.invalidwrites:
<snip>
I know which one I would prefer to maintain.
Surely the whole point of generating the code automatically is that you
don't have to maintain it?

--
Richard Heathfield <http://www.cpax.org.uk>
Email: -http://www. +rjh@
Google users: <http://www.cpax.org.uk/prg/writings/googly.php>
"Usenet is a strange place" - dmr 29 July 1999
Feb 16 '08 #7
Richard Heathfield <rj*@see.sig.invalidwrites:
Ben Pfaff said:
>Richard Heathfield <rj*@see.sig.invalidwrites:

<snip>
>I know which one I would prefer to maintain.

Surely the whole point of generating the code automatically is that you
don't have to maintain it?
The code that you snipped was not an example of automatically
generated code.
--
"Welcome to the wonderful world of undefined behavior, where the demons
are nasal and the DeathStation users are nervous." --Daniel Fox
Feb 16 '08 #8
Ben Pfaff said:
Richard Heathfield <rj*@see.sig.invalidwrites:
>Ben Pfaff said:
>>Richard Heathfield <rj*@see.sig.invalidwrites:

<snip>
>>I know which one I would prefer to maintain.

Surely the whole point of generating the code automatically is that you
don't have to maintain it?

The code that you snipped was not an example of automatically
generated code.
Oh. I see.

<bright smile, a la Dory from "Finding Nemo">

Well then - perhaps you ought to automate it! :-)

--
Richard Heathfield <http://www.cpax.org.uk>
Email: -http://www. +rjh@
Google users: <http://www.cpax.org.uk/prg/writings/googly.php>
"Usenet is a strange place" - dmr 29 July 1999
Feb 16 '08 #9
Richard Heathfield <rj*@see.sig.invalidwrites:
Ben Pfaff said:
>Richard Heathfield <rj*@see.sig.invalidwrites:
>>Ben Pfaff said:

Richard Heathfield <rj*@see.sig.invalidwrites:

<snip>

I know which one I would prefer to maintain.

Surely the whole point of generating the code automatically is that you
don't have to maintain it?

The code that you snipped was not an example of automatically
generated code.

Oh. I see.

<bright smile, a la Dory from "Finding Nemo">

Well then - perhaps you ought to automate it! :-)
Fortunately, I have no need to do so, because trailing commas are
allowed in initializer lists (and elsewhere).
--
char a[]="\n .CJacehknorstu";int putchar(int);int main(void){unsigned long b[]
={0x67dffdff,0x9aa9aa6a,0xa77ffda9,0x7da6aa6a,0xa6 7f6aaa,0xaa9aa9f6,0x11f6},*p
=b,i=24;for(;p+=!*p;*p/=4)switch(0[p]&3)case 0:{return 0;for(p--;i--;i--)case+
2:{i++;if(i)break;else default:continue;if(0)case 1:putchar(a[i&15]);break;}}}
Feb 16 '08 #10
Richard Heathfield <rj*@see.sig.invalidwrites:
Ben Pfaff said:
>Richard Heathfield <rj*@see.sig.invalidwrites:

<snip>
>I know which one I would prefer to maintain.

Surely the whole point of generating the code automatically is that you
don't have to maintain it?
I think Ben's point (not that I'd presume to speak for him) is that
the trailing-comma rule can make it easier to maintain the code that
generates the code.

If you want to generate an initializer list and you already have all
the information in an array, then the trailing-comma rule doesn't help
much; it's easy enough to know when you're about to write the last
element and drop the comma. It's *slightly* more convenient to be
able to generate a comma after every item, but not enough to be worth
marring the language.

But if you don't know whether the current item is the last one until
after you've written it (say, you're reading input from a file), then
being able to write the trailing comma after every item can be more
significantly convenient.

It's still not impossible to avoid the trailing comma (if nothing
else, you can build an array or list internally and write the whole
initializer only when it's complete), and I still have mixed feelings
about whether the rule is worthwhile, but it's not completely useless.

An interesting (I think) point is that I've never heard anyone
complain that semicolons are used as terminators rather than as
separators, as they are in Pascal. The fact that we can (and must)
write:
{
statement1;
statement2;
}
rather than
{
statement1;
statement2
}
makes programs easier to maintain when we want to add a third
statement. But the idea that a comma should be a terminator rather
than a separator seems somehow unnatural -- even though they're both
separators in written English.

To summarize:

{ statement1; statement2; } /* good */
{ statement1; statement2 } /* bad */
{ initializer1, initializer2, } /* bad */
{ initializer1, initializer2 } /* good */

--
Keith Thompson (The_Other_Keith) <ks***@mib.org>
Nokia
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"
Feb 16 '08 #11
Ben Pfaff wrote:
Richard Heathfield <rj*@see.sig.invalidwrites:
>aa*****@gmail.com said:
>>why does C language permits an extra comma in initializer list
i have heard it is for the purpose of automatic code generation
That's supposed to be the reasoning behind such lamenesses, yes. But
observe:

i = 0;
printf(" %d", day[i]);
while(i++ < 12)
{
printf(", %d%s", day[i], (i % 6) == 5 ? "\n" : "");
}

Observe:

int array[] = {
#ifdef ELEMENT_ONE
1,
#endif
#ifdef ELEMENT_TWO
2,
#endif
#ifdef ELEMENT_THREE
3,
#endif
#ifdef ELEMENT_FOUR
4,
#endif
};

versus:

int array[] = {
#ifdef ELEMENT_ONE
1
# if (defined(ELEMENT_TWO) || defined(ELEMENT_THREE) \
|| defined(ELEMENT_FOUR))
,
# endif
#endif
#ifdef ELEMENT_TWO
2,
# if defined(ELEMENT_THREE) || defined(ELEMENT_FOUR)
,
# endif
#endif
#ifdef ELEMENT_THREE
3
# if defined(ELEMENT_FOUR)
,
# endif
#endif
#ifdef ELEMENT_FOUR
4,
#endif
};
Ben meant to omit the comma following "4", of course. Perhaps the mistake
helps illustrate his point.

Richard Heathfield wrote:
Ben Pfaff said:
>I know which one I would prefer to maintain.

Surely the whole point of generating the code automatically is that you
don't have to maintain it?
Ben's example was for code that is manually written and maintained, not
automatically generated. I think his point has merit.

--
Thad
Feb 16 '08 #12

"Keith Thompson" <ks***@mib.orgwrote in message
An interesting (I think) point is that I've never heard anyone
complain that semicolons are used as terminators rather than as
separators, as they are in Pascal. The fact that we can (and must)
write:
{
statement1;
statement2;
}
rather than
{
statement1;
statement2
}
makes programs easier to maintain when we want to add a third
statement. But the idea that a comma should be a terminator rather
than a separator seems somehow unnatural -- even though they're both
separators in written English.
Most people don't know the rules for semicolons in written English. The
semi-colon can be used to introduce a list, or to separate two parts of a
sentence which are themselves valid sentences (periods).

--
Free games and programming goodies.
http://www.personal.leeds.ac.uk/~bgy1mm

Feb 16 '08 #13
"Malcolm McLean" <re*******@btinternet.comwrites:
Most people don't know the rules for semicolons in written
English. The semi-colon can be used to introduce a list, or to
separate two parts of a sentence which are themselves valid sentences
(periods).
Ordinarily, a colon, not a semicolon, would be used in English to
introduce a list.
--
Ben Pfaff
http://benpfaff.org
Feb 16 '08 #14

"Ben Pfaff" <bl*@cs.stanford.eduwrote in message
news:87************@blp.benpfaff.org...
"Malcolm McLean" <re*******@btinternet.comwrites:
>Most people don't know the rules for semicolons in written
English. The semi-colon can be used to introduce a list, or to
separate two parts of a sentence which are themselves valid sentences
(periods).

Ordinarily, a colon, not a semicolon, would be used in English to
introduce a list.
I mean terminate a comma-separated list.

--
Free games and programming goodies.
http://www.personal.leeds.ac.uk/~bgy1mm

Feb 16 '08 #15
aa*****@gmail.com wrote:
# Hi all,
#
# why does C language permits an extra comma in initializer list

Keypunching.

You don't want to modify an existing card deck just because you
insert a new card in the deck. It's the same reason for the semicolon
rules.

If you want to understand this better, next time to edit a source
file, restrict your actions to only
Deleting an entire line.
Inserting an entire line.
Moving existing lines.
Retyping an entire line.

--
SM Ryan http://www.rawbw.com/~wyrmwif/
OOOOOOOOOO! NAVY SEALS!
Feb 17 '08 #16
SM Ryan wrote:
aa*****@gmail.com wrote:
# Hi all,
#
# why does C language permits an extra comma in initializer list

Keypunching.

You don't want to modify an existing card deck just because you
insert a new card in the deck. It's the same reason for the semicolon
rules.
I thought legalising the trailing comma was new in C99. Not many card
readers where in use in 1999.

--
Ian Collins.
Feb 17 '08 #17
On Sun, 17 Feb 2008 14:18:51 +1300, Ian Collins <ia******@hotmail.com>
wrote in comp.lang.c:
SM Ryan wrote:
aa*****@gmail.com wrote:
# Hi all,
#
# why does C language permits an extra comma in initializer list

Keypunching.

You don't want to modify an existing card deck just because you
insert a new card in the deck. It's the same reason for the semicolon
rules.
I thought legalising the trailing comma was new in C99. Not many card
readers where in use in 1999.
Legalizing the trailing comma in an enumeration declaration was new in
C99. The optional trailing comma was left out of the ANSI 89/ISO 90
grammar by mistake.

--
Jack Klein
Home: http://JK-Technology.Com
FAQs for
comp.lang.c http://c-faq.com/
comp.lang.c++ http://www.parashift.com/c++-faq-lite/
alt.comp.lang.learn.c-c++
http://www.club.cc.cmu.edu/~ajo/docs/FAQ-acllc.html
Feb 17 '08 #18
Richard Heathfield wrote:
aa*****@gmail.com said:
>Hi all,

why does C language permits an extra comma in initializer list

ex:- int days[] = {
31,28.31,30,31,30,

Between 31 and 28 you meant ,, not ..
> 31,31,30,31,30,31,
}
i have heard it is for the purpose of automatic code generation

That's supposed to be the reasoning behind such lamenesses, yes. But
observe:

i = 0;
printf(" %d", day[i]);
while(i++ < 12)
{
printf(", %d%s", day[i], (i % 6) == 5 ? "\n" : "");
}

So, as you can see, it isn't actually difficult to generate the code
without the trailing comma.
int foo[] = {
#ifdef FOO
42, 0,
#endif
37, EOF,
#ifdef BAR
'\n', EXIT_FAILURE,
#endif
#ifdef BAZ
SEEK_END, ERANGE,
#endif
}

--
Army1987 (Replace "NOSPAM" with "email")
Feb 17 '08 #19
On Sun, 17 Feb 2008 11:15:44 +0000, Army1987 wrote:
Richard Heathfield wrote:
>So, as you can see, it isn't actually difficult to generate the code
without the trailing comma.

int foo[] = {
#ifdef FOO
42, 0,
#endif
37, EOF,
#ifdef BAR
'\n', EXIT_FAILURE,
#endif
#ifdef BAZ
SEEK_END, ERANGE,
#endif
}
int foo[] = {
#ifdef FOO
42, 0,
#endif
37, EOF
#ifdef BAR
,'\n', EXIT_FAILURE
#endif
#ifdef BAZ
,SEEK_END, ERANGE
#endif
}

It's not difficult when you have at least one fixed item in the list.
Feb 17 '08 #20
On Feb 16, 5:38 pm, Ben Pfaff <b...@cs.stanford.eduwrote:
Observe:

int array[] = {
#ifdef ELEMENT_ONE
1,
#endif
<snip>
};

versus:

int array[] = {
#ifdef ELEMENT_ONE
1
# if (defined(ELEMENT_TWO) || defined(ELEMENT_THREE) \
|| defined(ELEMENT_FOUR))
,
# endif
#endif
<snip>
};

I know which one I would prefer to maintain.
I can't think of too many cases where it is problematic to do:
int array[] = {
#ifdef ELEMENT_ONE
1,
#endif
SENTINEL
};

to force the existence of at least one fixed
element.
Feb 17 '08 #21
Harald van Dijk wrote:
int foo[] = {
#ifdef FOO
42, 0,
#endif
37, EOF
#ifdef BAR
,'\n', EXIT_FAILURE
#endif
#ifdef BAZ
,SEEK_END, ERANGE
#endif
}

It's not difficult when you have at least one fixed item in the list.
But it is so ugly! :-)
--
Army1987 (Replace "NOSPAM" with "email")
Feb 17 '08 #22
On Feb 16, 10:33 pm, Richard Heathfield <r...@see.sig.invalidwrote:
vipps...@gmail.com said:
On Feb 16, 7:14 pm, Richard Heathfield <r...@see.sig.invalidwrote:
aark...@gmail.com said:
Hi all,
why does C language permits an extra comma in initializer list
ex:- int days[] = {
31,28.31,30,31,30,
Between 31 and 28 you meant ,, not ..
How do you know?

Call me psychic if you like.
28.31 is a valid value for initializing in integer
context.

Yes, but on this occasion it was not what was intended.
Yeah richard is correct he is indeed psychic to a certain extent
I did n't mean 28.31 , i meant 28,31
Feb 17 '08 #23

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

27
by: Alberto Vera | last post by:
Hello: I have the next structure: How Can I make it using Python? How Can I update the value of 6?
4
by: Arne | last post by:
From: "Arne de Booij" <a_de_booij@hotmail.com> Subject: Comma delimited array into DB problems Date: 9. februar 2004 10:39 Hi, I have an asp page that takes input from a form on the previous...
11
by: Shawn Odekirk | last post by:
Some code I have inherited contains a macro like the following: #define setState(state, newstate) \ (state >= newstate) ? \ (fprintf(stderr, "Illegal...
21
by: siliconwafer | last post by:
Hi, In case of following expression: c = a && --b; if a is 0,b is not evaluated and c directly becomes 0. Does this mean that && operator is given a higher precedence over '--'operator? as...
5
by: Sriram Rajagopalan | last post by:
Hi, Is the extra comma at the end of an enumerator-list valid according to the C standards? With the gcc compiler the following is valid: enum DAYS {MONDAY, TUESDAY, }day1; gcc does not...
9
by: Wayne | last post by:
I have the following string: "smith", "Joe", "West Palm Beach, Fl." I need to split this string based on the commas, but as you see the city state contains a comma. String.split will spilt the...
1
by: Benjamin Rutt | last post by:
There has been a problem that has been bugging me for a while for reading input from standard in. Consider the following simple program: #!/usr/bin/env python import sys print 'enter...
4
by: alf | last post by:
Hi, I can not find out where the extra space comes from. Run following: import os,sys while 1: print 'Question ]?', if sys.stdin.readline().strip() in ('Y','y'): #do something pass
15
by: Lighter | last post by:
In 5.3.3.4 of the standard, the standard provides that "The lvalue-to- rvalue(4.1), array-to-pointer(4.2),and function-to-pointer(4.3) standard conversions are not applied to the operand of...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.