Hacker News new | ask | show | jobs
by tcas 4106 days ago
In the case of argv though on main it is defined to be null terminated on argv[argc] according to the standard. Assuming the pointers are the same size though what I said will work but is bad practice.

> sizeof( char* ) == sizeof( char* * )

True, I forgot that different architectures/compilers can produce different pointer sizes. Thanks!

1 comments

char* * argv is NULL terminated, my mistake I though you were referring to that type in general.