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!
> sizeof( char* ) == sizeof( char* * )
True, I forgot that different architectures/compilers can produce different pointer sizes. Thanks!