Hacker News new | ask | show | jobs
by 6502nerdface 3579 days ago
> array of pointers to pointers to characters

    Wouldn't that be char ***argv? (with three stars)
2 comments

For some reason, I thought it was:

  char **argv[]
It isn't. I've been away from C too long. Fixed in GP.
An array of anything decays to a pointer though, if I'm not mistaken.
Yeah, I know. I've already fixed it.