Arguments to C program question -
Arguments to C program question -
possible duplicate: should utilize char** argv or char* argv[] in c?
what difference between using char **argv , char *argv[] sec parameter c program. impact way strings passed? :-)
there absolutely no difference. @ all.
in c
void f(int*); and
void f(int[]); and
void f(int[42]); are 3 identical declarations.
c command-line-arguments
Comments
Post a Comment