digitalmars.D - SDWest 2004 (maybe off-topic)
- a lurker (6/9) Apr 29 2005 Shouldn't it be
- Walter (6/15) Apr 30 2005 this
- Stewart Gordon (11/23) May 04 2005 And even this looks wrong:
I'm surprised i found this in the presentation on D that's available on this site:Ever tried to declare in C a pointer to a pointer to an array of pointers to ints? int *(**p[]);Shouldn't it be int *(**p)[]; ??? Whether this is known or not, i think an errata should be made available...
Apr 29 2005
"a lurker" <a_member pathlink.com> wrote in message news:d4usfo$26jq$1 digitaldaemon.com...I'm surprised i found this in the presentation on D that's available onthissite:available... It's known. It was pointed out while I gave the talk at SDWest, and was cause for much merriment.Ever tried to declare in C a pointer to a pointer to an array of pointers to ints? int *(**p[]);Shouldn't it be int *(**p)[]; ??? Whether this is known or not, i think an errata should be made
Apr 30 2005
a lurker wrote:I'm surprised i found this in the presentation on D that's available on this site:And even this looks wrong: int *(*fp)(); // C int* function()* fp; // D Should it be int* function() fp; // D ??? Stewart. -- My e-mail is valid but not my primary mailbox. Please keep replies on the 'group where everyone may benefit.Ever tried to declare in C a pointer to a pointer to an array of pointers to ints? int *(**p[]);Shouldn't it be int *(**p)[]; ??? Whether this is known or not, i think an errata should be made available...
May 04 2005