473,386 Members | 1,973 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

int main(int argc, char *argv[] ) vs int main(int argc, char **argv )

Is this a style thing?

int main(int argc, char *argv[] ) or int main(int argc, char **argv )

i.e. *argv[] or **argv

Why choose the latter?
Nov 14 '05 #1
14 39734
Hal Styli wrote:

Is this a style thing?

int main(int argc, char *argv[] ) or int main(int argc, char **argv )

i.e. *argv[] or **argv

Why choose the latter?


No reason. The two are identical in the context of function parameters.
I choose one form or the other depending on how I use argv in the
program.
--
Joe Wright http://www.jw-wright.com
"Everything should be made as simple as possible, but not simpler."
--- Albert Einstein ---
Nov 14 '05 #2
Hal Styli wrote:
Is this a style thing?

int main(int argc, char *argv[] ) or int main(int argc, char **argv )

i.e. *argv[] or **argv
Yes, it's a style thing.
Why choose the latter?


It's a style thing. In a formal parameter list context, char *argv[] and
char **argv mean precisely the same thing. (In other contexts, they do
not.) Choose the one you think is most meaningful. I prefer **, but some
prefer *[], and with perfectly sound reasoning for their preference, so who
am I to tell them they're wrong?

--
Richard Heathfield : bi****@eton.powernet.co.uk
"Usenet is a strange place." - Dennis M Ritchie, 29 July 1999.
C FAQ: http://www.eskimo.com/~scs/C-faq/top.html
K&R answers, C books, etc: http://users.powernet.co.uk/eton
Nov 14 '05 #3
Richard Heathfield wrote:

Hal Styli wrote:
Is this a style thing?

int main(int argc, char *argv[] ) or int main(int argc, char **argv )

i.e. *argv[] or **argv


Yes, it's a style thing.
Why choose the latter?


It's a style thing. In a formal parameter list context, char *argv[] and
char **argv mean precisely the same thing. (In other contexts, they do
not.) Choose the one you think is most meaningful. I prefer **, but some
prefer *[], and with perfectly sound reasoning for their preference, so who
am I to tell them they're wrong?


Copying *[] out of the standard, is easier than thinking.

--
pete
Nov 14 '05 #4
Richard Heathfield wrote:
Hal Styli wrote:

Is this a style thing?

int main(int argc, char *argv[] ) or int main(int argc, char **argv ) [snip]Why choose the latter?

It's a style thing. In a formal parameter list context, char *argv[] and
char **argv mean precisely the same thing. (In other contexts, they do
not.) Choose the one you think is most meaningful. I prefer **, but some
prefer *[], and with perfectly sound reasoning for their preference, so who
am I to tell them they're wrong?


I chose *[] because I access elements using array notation instead of
pointer arithmetic, and I want to make it as easy as possible for me to
think of argv as an array.

I do the same thing in my own functions:

void strrev(char str[]);

Would reverse an array of char in place, and in that function I would
treat that array as an array, not as a pointer.

int crc32(char *buf, int len);

Would compute the 32-bit cyclical redundancy check of a buffer
containing character values. Inside the function, I'd treat buf as a
pointer (stepping through it with buf++, for example).

It's purely for the benefit of humans, but that's the point, right? :)

--
My address is yvoregnevna gjragl-guerr gjb-gubhfnaq guerr ng lnubb qbg pbz
Note: Rot13 and convert spelled-out numbers to numerical equivalents.
Nov 14 '05 #5
August Derleth wrote:
Richard Heathfield wrote:
It's a style thing. In a formal parameter list context, char *argv[] and
char **argv mean precisely the same thing. (In other contexts, they do
not.) Choose the one you think is most meaningful. I prefer **, but some
prefer *[], and with perfectly sound reasoning for their preference, so
who am I to tell them they're wrong?
I chose *[] because I access elements using array notation instead of
pointer arithmetic, and I want to make it as easy as possible for me to
think of argv as an array.

I do the same thing in my own functions:

void strrev(char str[]);

Would reverse an array of char in place, and in that function I would
treat that array as an array, not as a pointer.

int crc32(char *buf, int len);

Would compute the 32-bit cyclical redundancy check of a buffer
containing character values. Inside the function, I'd treat buf as a
pointer (stepping through it with buf++, for example).


Perfectly sound reasoning, IMHO.
It's purely for the benefit of humans, but that's the point, right? :)


Absolutely. Once you have what you consider to be a rational approach (and
here, you clearly do, even if it's one that I don't happen to use myself),
the important thing is to stick to it. Consistency is the key.

--
Richard Heathfield : bi****@eton.powernet.co.uk
"Usenet is a strange place." - Dennis M Ritchie, 29 July 1999.
C FAQ: http://www.eskimo.com/~scs/C-faq/top.html
K&R answers, C books, etc: http://users.powernet.co.uk/eton
Nov 14 '05 #6
August Derleth wrote:
[...snip...] int crc32(char *buf, int len);

Would compute the 32-bit cyclical redundancy check of a buffer
containing character values.


Wouldn't it be more appropriate if the return type was unsigned? The
resulting value denotes a polynome with binary coefficients, and there
is nothing to justify a special meaning for the sign bit.

Forthermore, if you use signed ints inside the routine, you are going to
do bitwise operations on signed numbers, which may give headaches
concerning portability.

(By pretty much the same token, I'd make the buf's base type an unsigned
char.)

Best regards, Sidney

Nov 14 '05 #7

"Richard Heathfield" <do******@address.co.uk.invalid> wrote in message news:bu**********@sparta.btinternet.com...
August Derleth wrote:

It's purely for the benefit of humans, but that's the point, right? :)


Absolutely. Once you have what you consider to be a rational approach (and
here, you clearly do, even if it's one that I don't happen to use myself),
the important thing is to stick to it. Consistency is the key.


The important thing is to distinguish between pointers
to pre-existing arrays, and pointers which will have
space allocated to them inside the function, and cases
somewhere between the two. But C provides no way of doing
this, and half the time the documentation is no help either. :-(

John.
Nov 14 '05 #8
Sidney Cadot <si****@jigsaw.nl> wrote in message news:<bu**********@news.tudelft.nl>...
August Derleth wrote:
[...snip...]

int crc32(char *buf, int len);

Would compute the 32-bit cyclical redundancy check of a buffer
containing character values.


Wouldn't it be more appropriate if the return type was unsigned? The
resulting value denotes a polynome with binary coefficients, and there
is nothing to justify a special meaning for the sign bit.

Forthermore, if you use signed ints inside the routine, you are going to
do bitwise operations on signed numbers, which may give headaches
concerning portability.

(By pretty much the same token, I'd make the buf's base type an unsigned
char.)


I'd shoot for...

unsigned long crc32(const void *, size_t);

--
Peter
Nov 14 '05 #9
Sidney Cadot wrote:
August Derleth wrote:
[...snip...]


int crc32(char *buf, int len);

Would compute the 32-bit cyclical redundancy check of a buffer
containing character values.

Wouldn't it be more appropriate if the return type was unsigned? The
resulting value denotes a polynome with binary coefficients, and there
is nothing to justify a special meaning for the sign bit.

Forthermore, if you use signed ints inside the routine, you are going to
do bitwise operations on signed numbers, which may give headaches
concerning portability.

(By pretty much the same token, I'd make the buf's base type an unsigned
char.)


I'm certain you're absolutely correct, and I'm also certain I would take
all that into account were I to actually implement a crc32 function in
C. But the prototype above was a brief throwaway and not intended to be
indicative of my coding skills or lack thereof, merely to illustrate a
minor point of my style.

Hell, maybe I should put a Standard Disclaimer in my signature. It
should only run 200-300 lines, max. ;)

--
My address is yvoregnevna gjragl-guerr gjb-gubhfnaq guerr ng lnubb qbg pbz
Note: Rot13 and convert spelled-out numbers to numerical equivalents.
Nov 14 '05 #10
Peter Nilsson wrote:
Sidney Cadot <si****@jigsaw.nl> wrote in message news:<bu**********@news.tudelft.nl>...
August Derleth wrote:

[...snip...]

int crc32(char *buf, int len);

Would compute the 32-bit cyclical redundancy check of a buffer
containing character values.


Wouldn't it be more appropriate if the return type was unsigned? The
resulting value denotes a polynome with binary coefficients, and there
is nothing to justify a special meaning for the sign bit.

Forthermore, if you use signed ints inside the routine, you are going to
do bitwise operations on signed numbers, which may give headaches
concerning portability.

(By pretty much the same token, I'd make the buf's base type an unsigned
char.)

I'd shoot for...

unsigned long crc32(const void *, size_t);


That, indeed, would be favorite.

--
My address is yvoregnevna gjragl-guerr gjb-gubhfnaq guerr ng lnubb qbg pbz
Note: Rot13 and convert spelled-out numbers to numerical equivalents.
Nov 14 '05 #11
John L wrote:
The important thing is to distinguish between pointers
to pre-existing arrays, and pointers which will have
space allocated to them inside the function, and cases
somewhere between the two. But C provides no way of doing
this, and half the time the documentation is no help either. :-(

John.


I agree totally, and I do include fairly large and complete block
comments in my header files that give an indication of what my function
expects, what it will do if those conditions are not met (assuming my
function can tell), and what it will do if everything is nominal.

The rest, as they say, relies on the kindness of strangers.

--
My address is yvoregnevna gjragl-guerr gjb-gubhfnaq guerr ng lnubb qbg pbz
Note: Rot13 and convert spelled-out numbers to numerical equivalents.
Nov 14 '05 #12
Richard Heathfield <do******@address.co.uk.invalid> spoke thus:
I prefer **, but some
prefer *[], and with perfectly sound reasoning for their preference, so who
am I to tell them they're wrong?


Well, considering you've co-written a book and "they" probably haven't,
maybe your style preferences count a little bit more ;)

--
Christopher Benson-Manica | I *should* know what I'm talking about - if I
ataru(at)cyberspace.org | don't, I need to know. Flames welcome.
Nov 14 '05 #13
In <40********@127.0.0.1> "Hal Styli" <no_spam@all> writes:
Is this a style thing?

int main(int argc, char *argv[] ) or int main(int argc, char **argv )
Yes.
i.e. *argv[] or **argv

Why choose the latter?


1. Because it's the *actual* type of argv, *argv[] is merely syntactic
sugar.

2. Because it saves one keystroke.

To the newbie, *argv[] is more intuitive, because it actually reflects
the common usage of argv. That's why most C books use this notation.

Once the programmer realises that *argv[] is nothing more than syntactic
sugar for **argv (which is far from obvious to the newbie), the easier
to type form may become more attractive.

Note that this discussion is valid only for argv when used as function
parameter. In any other context, the two forms have different meanings:

char **foo; /* a pointer to a pointer to char */
char *bar[]; /* an array of pointers to char, of unspecified size */

foo has a complete type, i.e. its size is known by the compiler, and
therefore sizeof foo is OK anywhere after the declaration of foo.

bar has an incomplete type, its size is not known until another
declaration will specify the actual number of array elements:

fangorn:~/tmp 144> cat test.c
char *bar[];

int invalid(void) { return sizeof bar; }

char *bar[3];

int main(void) { return sizeof bar; }
fangorn:~/tmp 145> gcc test.c
test.c: In function `invalid':
test.c:3: sizeof applied to an incomplete type

While this is a contrived example, it is not uncommon to have declarations
of external arrays of unknown size:

extern *bar[];

bar is actually defined in another module and there is no way to tell its
number of elements at compile time. At run time, either the module
defining it will export its size to the rest of the program or a sentinel
value will be used to mark the end of the array (or both, for partially
initialised arrays).

Dan
--
Dan Pop
DESY Zeuthen, RZ group
Email: Da*****@ifh.de
Nov 14 '05 #14
> >Is this a style thing?

int main(int argc, char *argv[] ) or int main(int argc, char **argv )


Yes.

Note that this discussion is valid only for argv when used as function
parameter. In any other context, the two forms have different meanings:

char **foo; /* a pointer to a pointer to char */
char *bar[]; /* an array of pointers to char, of unspecified size */


Actually, the discussion is valid for any function parameter, eg if:
void baz(char *bar[])
then sizeof(bar) == sizeof(char **). Same goes for:
void baz(char *bar[9])
or any other subscript.
Nov 14 '05 #15

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: wwj | last post by:
Hi ,all I want to know the difference between char a and char *p=new char and the difference between the heap and the stack ,and if the char a is corresponding to the stack in MEMORY,and char...
24
by: wwj | last post by:
Hi ,all I want to know the difference between char a and char *p=new char and the difference between the heap and the stack ,and if the char a is corresponding to the stack in MEMORY,and char...
10
by: kevin.hall | last post by:
GCC 3.3 and MSVS 6.0 have no problem converting char* to const char* (not even a warning), but MS's WinCE compiler generated an error complained that this was not possible. MS's WinCE compiler did...
0
by: joye | last post by:
Hello , I meet some data convertion problem, the sample code as following, namespace Configure { using namespace System ; typedef struct _SW{ char szVersion ;
1
by: joye | last post by:
Hello , I meet some data convertion problem, the sample code as following, namespace Configure { using namespace System ; typedef struct _SW{ char szVersion ;
7
by: GRoll35 | last post by:
This is 1 source page of a project im working on. i just have this one error. i'll show the error then show the code.. i'll point out the line that it doesn't like. if anyone has any ideas or...
10
by: yogeshmk | last post by:
I need to break a longer string (with strtok()) and store the smaller strings in an array. since the number of small strings is not fixed/known, I cannot use a declaration like char *format, so I...
21
by: Wisdo | last post by:
Hi All, char to char ** is compile error. why? if i hava a string array. yes. it's not safe and it's better to use vector<stringinstead. but my point is the language feature. char...
35
by: Sean Farrow | last post by:
Hi: What is best and safest way of converting a char* to a const char *? Can I use const_cast? Cheers Sean.
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.