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

Popular posts from this blog

iphone - Dismissing a UIAlertView -

intellij idea - Update external libraries with intelij and java -

javascript - send data from a new window to previous window in php -