Help with Operator in C

Posted by Grasper on Stack Overflow See other posts from Stack Overflow or by Grasper
Published on 2010-03-08T19:47:39Z Indexed on 2010/03/08 19:51 UTC
Read the original article Hit count: 341

Filed under:

does ** have any special meaning in C?

Like this:

static intparse_one (int argc, char **argv)
{
    cmd_line       *slot;
    int             value;
    Flag_name       flag_name;
    int         i;


    if (argc < 1 || **argv != '-')

© Stack Overflow or respective owner

Related posts about c