How can I run a C program from command line so that argc
will be 0 ?
I know this is possible in C with execve("./a.out", (char**){NULL}, NULL);
but I'd like it from command line (bash or zsh).
Is there some built-in feature that can achieve this ?