My professor and a couple of students are arguing about whether argv is null terminated or not. My friend wrote a small program and it printed out null but another kid said that he is probably simply reading into blank memory. Can someone solve this discussion?

link|improve this question

feedback

2 Answers

up vote 35 down vote accepted

From the Standard:

5.1.2.2.1 Program startup
...
-- argv[argc] shall be a null pointer.

So, yes; argv is null terminated

link|improve this answer
3  
It doesn't get more clear-cut than that ;) – caf Sep 23 '10 at 0:19
Wow, I didn't know that. Why then the argc anyway? – Christian Rau May 12 '11 at 0:33
2  
I don't know why. But it makes writing some programs a little easier by avoiding having to walk the argv array just to count the arguments. – pmg May 12 '11 at 8:10
feedback

According to the standard, "argv[argc] shall be a null pointer" (5.1.2.2.1).

link|improve this answer
Why and how did it become standard? Any idea? – Reigel Sep 23 '10 at 2:15
4  
@Reigel: The man page for exec from 1979 (plan9.bell-labs.com/7thEdMan/v7vol1.pdf) shows that this predates the standard by quite a bit, and contains a possible hint as to why it's this way: "Argv is directly usable in another execv because argv[argc] is 0." – bk1e Sep 23 '10 at 6:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.