Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
kandr2 question
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  Messages 51 - 75 of 85 - Collapse all  -  Translate all to Translated (View all originals) < Older  Newer >
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Bill Cunningham  
View profile  
 More options Oct 31 2012, 1:47 pm
Newsgroups: comp.lang.c
From: "Bill Cunningham" <nos...@nspam.invalid>
Date: Wed, 31 Oct 2012 13:47:29 -0500
Local: Wed, Oct 31 2012 2:47 pm
Subject: Re: kandr2 question

Keith Thompson wrote:
> Not to defend the attacks you've been subjected to in this thread,
> but when I read your original question I did assume that you weren't
> aware that "char foo[]" and "char *foo" are equivalent as parameter
> definitions.  It seemed to me to be a reasonable assumption based
> on your history. In any case, the exact same question could have
> been asked by someone who *didn't* know about the equivalence.

> Wording your question more clearly might have avoided a lot of
> misunderstanding.

    I thought in other posts and as long as I've been around that it would
be a reasonable assumption that in the very least I would know the sameness
and differences about pointers and arrays. Agreed my wording could've been
better but alot of that has always been my problem. I didn't know about the
word "convention" but I know I had been told that in the case of a parameter
declartion for taking an array was a pointer to whatever. I also assume that
kandr2 isn't wrong. So I wanted to clear up the confusion. I believe now
that it is legal C but not conventional.

Bill


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bill Cunningham  
View profile  
 More options Oct 31 2012, 1:52 pm
Newsgroups: comp.lang.c
From: "Bill Cunningham" <nos...@nspam.invalid>
Date: Wed, 31 Oct 2012 13:52:50 -0500
Local: Wed, Oct 31 2012 2:52 pm
Subject: Re: kandr2 question

Barry Schwarz wrote:
> Granted that the parameter COULD be changed as you describe, why do
> you think it SHOULD be changed?

[snip]

n1570.

Bill


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Phil Carmody  
View profile  
 More options Oct 31 2012, 1:59 pm
Newsgroups: comp.lang.c
From: Phil Carmody <thefatphil_demun...@yahoo.co.uk>
Date: 31 Oct 2012 19:48:13 +0200
Local: Wed, Oct 31 2012 1:48 pm
Subject: Re: kandr2 question

Keith Thompson <ks...@mib.org> writes:
> "Bill Cunningham" <nos...@nspam.invalid> writes:
...
> Wording your question more clearly might have avoided a lot of
> misunderstanding.

But why would a troll do that if he knows he's more likely
to rack up a whole bunch more strokes if he keeps things
badly worded?

Phil
--
Regarding TSA regulations:
How are four small bottles of liquid different from one large bottle?
Because four bottles can hold the components of a binary liquid explosive,
whereas one big bottle can't. -- camperdave responding to MacAndrew on /.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Kenneth Brody  
View profile  
 More options Oct 31 2012, 2:15 pm
Newsgroups: comp.lang.c
From: Kenneth Brody <kenbr...@spamcop.net>
Date: Wed, 31 Oct 2012 14:15:30 -0400
Local: Wed, Oct 31 2012 2:15 pm
Subject: Re: kandr2 question
On 10/30/2012 6:07 PM, tom st denis wrote:

> On Oct 30, 6:01 pm, Keith Thompson <ks...@mib.org> wrote:
>> tom st denis <t...@iahu.ca> writes:
>> [...]

>>>                     ... char s[] is equivalent to char *s ...

>> As you know, the equivalence applies only for function parameters.

> Yup, but I was replying in context to his original question so the
> pedantic police need not apply.

Since I'm not a member of the "pedantic police", I guess I am allowed to
point out that you stripped out the context showing that it was a function
parameter.  You simply said:

> If you don't know that char s[] is equivalent to char *s by now you
> have to be trolling and are deserving of contempt.

--
Kenneth Brody

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Keith Thompson  
View profile  
 More options Oct 31 2012, 2:20 pm
Newsgroups: comp.lang.c
From: Keith Thompson <ks...@mib.org>
Date: Wed, 31 Oct 2012 11:20:49 -0700
Local: Wed, Oct 31 2012 2:20 pm
Subject: Re: kandr2 question

"Bill Cunningham" <nos...@nspam.invalid> writes:
> Barry Schwarz wrote:

>> Granted that the parameter COULD be changed as you describe, why do
>> you think it SHOULD be changed?
> [snip]

> n1570.

That doesn't answer the question.  The standard says that "char *foo"
and "char foo[]" are equivalent as parameter definitions.  It says
nothing about which one *should* be used, and it uses both versions in
normative text.

--
Keith Thompson (The_Other_Keith) ks...@mib.org  <http://www.ghoti.net/~kst>
    Will write code for food.
"We must do something.  This is something.  Therefore, we must do this."
    -- Antony Jay and Jonathan Lynn, "Yes Minister"


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Kenneth Brody  
View profile  
 More options Oct 31 2012, 2:21 pm
Newsgroups: comp.lang.c
From: Kenneth Brody <kenbr...@spamcop.net>
Date: Wed, 31 Oct 2012 14:21:12 -0400
Local: Wed, Oct 31 2012 2:21 pm
Subject: Re: kandr2 question
On 10/30/2012 7:30 PM, Bill Cunningham wrote:
[...]

> In my original question I was asking about convention.

Your original question was:

> int getline (char s[], int lim)

> Unless I'm missing something here to pass an array shoudn't that first
> parameter be char *s ?

To me, I see no question about "convention", but rather syntax, because you
believe that "char s[]" is "wrong".  The wording screams that you feel it's
not valid syntax, rather than "just a different convention" for the same thing.

A question about convention, if I were wording it, would have gone something
like "wouldn't it be clearer to use 'char *s' instead".

--
Kenneth Brody


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bill Cunningham  
View profile  
 More options Oct 31 2012, 2:37 pm
Newsgroups: comp.lang.c
From: "Bill Cunningham" <nos...@nspam.invalid>
Date: Wed, 31 Oct 2012 14:37:31 -0500
Local: Wed, Oct 31 2012 3:37 pm
Subject: Re: kandr2 question

Keith Thompson wrote:
> That doesn't answer the question.  The standard says that "char *foo"
> and "char foo[]" are equivalent as parameter definitions.  It says
> nothing about which one *should* be used, and it uses both versions in
> normative text.

    Now I'm confused. I thought convention or "what you should do" was to
use int * (in the prototype) when passing a int [2]={0,1}; or similar. So
the standard *doesn't* say that? No wonder then kand2 used a char s[] then.

Bill


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bill Cunningham  
View profile  
 More options Oct 31 2012, 2:40 pm
Newsgroups: comp.lang.c
From: "Bill Cunningham" <nos...@nspam.invalid>
Date: Wed, 31 Oct 2012 14:40:58 -0500
Local: Wed, Oct 31 2012 3:40 pm
Subject: Re: kandr2 question
Bill Cunningham wrote:
> Keith Thompson wrote:

>> That doesn't answer the question.  The standard says that "char *foo"
>> and "char foo[]" are equivalent as parameter definitions.  It says
>> nothing about which one *should* be used, and it uses both versions
>> in normative text.

>    Now I'm confused. I thought convention or "what you should do" was
> to use int * (in the prototype) when passing a int [2]={0,1}; or
> ^

        Sorry I mean int type[2]={0,1};


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
SG  
View profile  
 More options Oct 31 2012, 3:14 pm
Newsgroups: comp.lang.c
From: SG <sgesem...@gmail.invalid>
Date: Wed, 31 Oct 2012 20:14:07 +0100
Local: Wed, Oct 31 2012 3:14 pm
Subject: Re: kandr2 question
Am 30.10.2012 23:41, schrieb Bill Cunningham:

>     1.9 page 29 has this function.

> int getline (char s[], int lim)

> Unless I'm missing something here to pass an array shoudn't that first
> parameter be char *s ?

Why?

Personally, I prefer to use [] when declaring a function if the function
potentially wants "more than thing" (i.e. does pointer arithmetic on it
to access more than one object etc). I prefer * otherwise. It makes the
code kind of self-documenting to some degree.

One could argue that * and [] is an irregular aspect of the language and
one should avoid it just to make it easier for people to read the code
who don't know the rule that the compiler replaces the top-level [] in
function parameter types with *.

But then again, we still have array-to-pointer decay which is something
newbies have to deal with eventually... So much for regularity.

Cheers!
SG


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Keith Thompson  
View profile  
 More options Oct 31 2012, 3:18 pm
Newsgroups: comp.lang.c
From: Keith Thompson <ks...@mib.org>
Date: Wed, 31 Oct 2012 12:18:49 -0700
Local: Wed, Oct 31 2012 3:18 pm
Subject: Re: kandr2 question

"Bill Cunningham" <nos...@nspam.invalid> writes:
> Keith Thompson wrote:
>> That doesn't answer the question.  The standard says that "char *foo"
>> and "char foo[]" are equivalent as parameter definitions.  It says
>> nothing about which one *should* be used, and it uses both versions in
>> normative text.

>     Now I'm confused. I thought convention or "what you should do" was to
> use int * (in the prototype) when passing a int [2]={0,1}; or similar. So
> the standard *doesn't* say that? No wonder then kand2 used a char s[] then.

I don't know where you got the idea that the standard specifies a
"convention" in this case.  It doesn't (nor should it IMHO).

There is no single "convention"; there are probably about as many coding
conventions as there are C programmers.

I don't see how your last sentence above follows from anything else.
Using "char s[]" is perfectly valid, but "char *s" is equally valid.

--
Keith Thompson (The_Other_Keith) ks...@mib.org  <http://www.ghoti.net/~kst>
    Will write code for food.
"We must do something.  This is something.  Therefore, we must do this."
    -- Antony Jay and Jonathan Lynn, "Yes Minister"


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bill Cunningham  
View profile  
 More options Oct 31 2012, 3:28 pm
Newsgroups: comp.lang.c
From: "Bill Cunningham" <nos...@nspam.invalid>
Date: Wed, 31 Oct 2012 15:29:03 -0500
Local: Wed, Oct 31 2012 4:29 pm
Subject: Re: kandr2 question

Keith Thompson wrote:
> I don't know where you got the idea that the standard specifies a
> "convention" in this case.  It doesn't (nor should it IMHO).

> There is no single "convention"; there are probably about as many
> coding conventions as there are C programmers.

> I don't see how your last sentence above follows from anything else.
> Using "char s[]" is perfectly valid, but "char *s" is equally valid.

    Ok I understand.

B


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bill Cunningham  
View profile  
 More options Oct 31 2012, 4:56 pm
Newsgroups: comp.lang.c
From: "Bill Cunningham" <nos...@nspam.invalid>
Date: Wed, 31 Oct 2012 16:56:44 -0500
Local: Wed, Oct 31 2012 5:56 pm
Subject: Re: kandr2 question

Keith Thompson wrote:
> I don't know where you got the idea that the standard specifies a
> "convention" in this case.  It doesn't (nor should it IMHO).

> There is no single "convention"; there are probably about as many
> coding conventions as there are C programmers.

> I don't see how your last sentence above follows from anything else.
> Using "char s[]" is perfectly valid, but "char *s" is equally valid.

    I think this entire thread has been a big mistake. When I was told a
prototype for passing an array should be a pointer I was thinking it was
illegal to do anything else. This is embarrassing. I got it straight now
though.

Bill


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Keith Thompson  
View profile  
 More options Oct 31 2012, 6:05 pm
Newsgroups: comp.lang.c
From: Keith Thompson <ks...@mib.org>
Date: Wed, 31 Oct 2012 15:05:11 -0700
Local: Wed, Oct 31 2012 6:05 pm
Subject: Re: kandr2 question

"Bill Cunningham" <nos...@nspam.invalid> writes:
> Keith Thompson wrote:
>> I don't know where you got the idea that the standard specifies a
>> "convention" in this case.  It doesn't (nor should it IMHO).

>> There is no single "convention"; there are probably about as many
>> coding conventions as there are C programmers.

>> I don't see how your last sentence above follows from anything else.
>> Using "char s[]" is perfectly valid, but "char *s" is equally valid.

>     I think this entire thread has been a big mistake. When I was told a
> prototype for passing an array should be a pointer I was thinking it was
> illegal to do anything else. This is embarrassing.

As it should be.  You've claimed repeatedly that you understood that
"char s[]" and "char *s" are equivalent as parameter definitions.
You claimed that your original question was about stylistic
conventions.  Now you tell us that you thought "char s[]" would
be illegal.  I see no reasonable explanation for this inconsistency.

>                                                    I got it straight now
> though.

A pleasant surprise if true.

--
Keith Thompson (The_Other_Keith) ks...@mib.org  <http://www.ghoti.net/~kst>
    Will write code for food.
"We must do something.  This is something.  Therefore, we must do this."
    -- Antony Jay and Jonathan Lynn, "Yes Minister"


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bill Cunningham  
View profile  
 More options Oct 31 2012, 9:04 pm
Newsgroups: comp.lang.c
From: "Bill Cunningham" <nos...@nspam.invalid>
Date: Wed, 31 Oct 2012 20:04:09 -0500
Local: Wed, Oct 31 2012 9:04 pm
Subject: Re: kandr2 question

I guess to each his/her own.

Bill


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Barry Schwarz  
View profile  
 More options Nov 1 2012, 12:44 am
Newsgroups: comp.lang.c
From: Barry Schwarz <schwar...@yahoo.com>
Date: Wed, 31 Oct 2012 21:44:07 -0700 (PDT)
Local: Thurs, Nov 1 2012 12:44 am
Subject: Re: kandr2 question

On Wednesday, October 31, 2012 10:52:40 AM UTC-7, Bill Cunningham wrote:
> Barry Schwarz wrote:
>> Granted that the parameter COULD be changed as you describe, why do
>> you think it SHOULD be changed?
>[snip]
>n1570.

What does the hybrid version of the Infinity Q45 automobile have to do with this discussion?

There is no n1570.  All the numbers under the N are in the range of 31 to 45.

And in the draft standard, the word "should" appears 80 times.  Not one of those is related to the form a a function parameter.  Maybe you should actually read it sometime.

If you are just going to throw random words together, do it in alt.anagrams where it can possibly lead to an interesting thread.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Ike Naar  
View profile  
 More options Nov 1 2012, 5:34 am
Newsgroups: comp.lang.c
From: Ike Naar <i...@sverige.freeshell.org>
Date: Thu, 1 Nov 2012 09:34:34 +0000 (UTC)
Local: Thurs, Nov 1 2012 5:34 am
Subject: Re: kandr2 question
On 2012-11-01, Barry Schwarz <schwar...@yahoo.com> wrote:

> On Wednesday, October 31, 2012 10:52:40 AM UTC-7, Bill Cunningham wrote:
>> Barry Schwarz wrote:
>>> Granted that the parameter COULD be changed as you describe, why do
>>> you think it SHOULD be changed?
>>[snip]
>>n1570.

> There is no n1570.

There is http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1570.pdf,
a draft version of the C 2011 Standard.

> All the numbers under the N are in the range of 31 to 45.

No idea what that is supposed to mean. Can you clarify?

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Phil Carmody  
View profile  
 More options Nov 1 2012, 12:08 pm
Newsgroups: comp.lang.c, alt.anagrams
Followup-To: alt.anagrams
From: Phil Carmody <thefatphil_demun...@yahoo.co.uk>
Date: 01 Nov 2012 17:56:27 +0200
Local: Thurs, Nov 1 2012 11:56 am
Subject: Re: kandr2 question

Barry Schwarz <schwar...@yahoo.com> writes:
> On Wednesday, October 31, 2012 10:52:40 AM UTC-7, Bill Cunningham wrote:
> > Barry Schwarz wrote:
> >> Granted that the parameter COULD be changed as you describe, why do
> >> you think it SHOULD be changed?
> >[snip]
> >n1570.

> What does the hybrid version of the Infinity Q45 automobile have to do with this discussion?

> There is no n1570.  All the numbers under the N are in the range of 31 to 45.

> And in the draft standard, the word "should" appears 80 times.  Not one of those is related to the form a a function parameter.  Maybe you should actually read it sometime.

> If you are just going to throw random words together, do it in alt.anagrams where it can possibly lead to an interesting thread.

No! Please - we already have one clue-resistent loon in a.a, we don't need another (and f/ups set).

Poster Bill Cunningham =
Bing "Null pointer chasm"

Phil
--
Regarding TSA regulations:
How are four small bottles of liquid different from one large bottle?
Because four bottles can hold the components of a binary liquid explosive,
whereas one big bottle can't. -- camperdave responding to MacAndrew on /.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bill Cunningham  
View profile  
 More options Nov 1 2012, 2:11 pm
Newsgroups: comp.lang.c
From: "Bill Cunningham" <nos...@nspam.invalid>
Date: Thu, 1 Nov 2012 13:11:08 -0500
Local: Thurs, Nov 1 2012 2:11 pm
Subject: Re: kandr2 question

Keith Thompson wrote:
> As it should be.  You've claimed repeatedly that you understood that
> "char s[]" and "char *s" are equivalent as parameter definitions.

    Yes I do.

 You claimed that your original question was about stylistic

> conventions.  Now you tell us that you thought "char s[]" would
> be illegal.  I see no reasonable explanation for this inconsistency.

>>                                                    I got it straight
>> now though.

    When this thread began I thought style was part of the standard. And I
do have a n1570.pdf. Convention came to be known as programmer's option.
Standard or a best current practice was what I believed to be using char *s
instead of char s[].
    Does that help any? Do you know know what I've been thinking. As I said
I even regret this thread now.

Bill


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bill Cunningham  
View profile  
 More options Nov 1 2012, 2:14 pm
Newsgroups: comp.lang.c
From: "Bill Cunningham" <nos...@nspam.invalid>
Date: Thu, 1 Nov 2012 13:14:23 -0500
Local: Thurs, Nov 1 2012 2:14 pm
Subject: Re: kandr2 question

Barry Schwarz wrote:
> There is no n1570.  All the numbers under the N are in the range of
> 31 to 45.

> And in the draft standard, the word "should" appears 80 times.  Not
> one of those is related to the form a a function parameter.  Maybe
> you should actually read it sometime.

> If you are just going to throw random words together, do it in
> alt.anagrams where it can possibly lead to an interesting thread.

    I have n1570.pdf and n1256.pdf which is older.

Bill


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Barry Schwarz  
View profile  
 More options Nov 1 2012, 3:13 pm
Newsgroups: comp.lang.c
From: Barry Schwarz <schwa...@dqel.com>
Date: Thu, 01 Nov 2012 12:13:28 -0700
Local: Thurs, Nov 1 2012 3:13 pm
Subject: Re: kandr2 question
On Thu, 1 Nov 2012 09:34:34 +0000 (UTC), Ike Naar

You have never played Bingo??

--
Remove del for email


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bill Cunningham  
View profile  
 More options Nov 1 2012, 4:26 pm
Newsgroups: comp.lang.c
From: "Bill Cunningham" <nos...@nspam.invalid>
Date: Thu, 1 Nov 2012 15:26:58 -0500
Local: Thurs, Nov 1 2012 4:26 pm
Subject: Re: kandr2 question

Ike Naar wrote:
> No idea what that is supposed to mean. Can you clarify?

    All I know is I have n1296.pdf and n1570.pdf

Bill


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Anand Hariharan  
View profile  
 More options Nov 7 2012, 5:53 pm
Newsgroups: comp.lang.c
From: Anand Hariharan <mailto.anand.hariha...@gmail.com>
Date: Wed, 7 Nov 2012 14:53:38 -0800 (PST)
Local: Wed, Nov 7 2012 5:53 pm
Subject: Re: kandr2 question
On Oct 31, 10:11 am, Ben Bacarisse <ben.use...@bsb.me.uk> wrote:

Thank you, Ben and James.

sincerely,
- Anand


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Nick Keighley  
View profile  
 More options Nov 10 2012, 9:27 am
Newsgroups: comp.lang.c
From: Nick Keighley <nick_keighley_nos...@hotmail.com>
Date: Sat, 10 Nov 2012 06:27:33 -0800 (PST)
Local: Sat, Nov 10 2012 9:27 am
Subject: Re: kandr2 question
On Oct 30, 9:50 pm, "Bill Cunningham" <nos...@nspam.invalid> wrote:

> tom st denis wrote:
> > Fuck off.

>     Go fuck yourself. That's what I have been told.

leave some context in you idiot.
who told you? And what did they tell you? (you tend to misquote people)

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Nick Keighley  
View profile  
 More options Nov 10 2012, 9:29 am
Newsgroups: comp.lang.c
From: Nick Keighley <nick_keighley_nos...@hotmail.com>
Date: Sat, 10 Nov 2012 06:29:44 -0800 (PST)
Local: Sat, Nov 10 2012 9:29 am
Subject: Re: kandr2 question
On Oct 30, 10:25 pm, "Bill Cunningham" <nos...@nspam.invalid> wrote:

I'm no baby and I often use array syntax

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Nick Keighley  
View profile  
 More options Nov 10 2012, 9:37 am
Newsgroups: comp.lang.c
From: Nick Keighley <nick_keighley_nos...@hotmail.com>
Date: Sat, 10 Nov 2012 06:37:43 -0800 (PST)
Local: Sat, Nov 10 2012 9:37 am
Subject: Re: kandr2 question
On Oct 30, 10:04 pm, "Bill Cunningham" <nos...@nspam.invalid> wrote:

> tom st denis wrote:
> > If you don't know that char s[] is equivalent to char *s by now you
> > have to be trolling and are deserving of contempt.

>     Of course I know that Dick. What's that got to do with anything? Read
> the standard.

what?


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Messages 51 - 75 of 85 < Older  Newer >
« Back to Discussions « Newer topic     Older topic »