[Solved] What is the output of this C code (run without any command line arguments)?
Quoting shamelessly from the C11 spec, chapter ยง5.1.2.2.1, (emphasis mine) โ The value of argc shall be non-negative. โ argv[argc] shall be a null pointer. โ If the value of argc is greater than zero, the array members argv[0]through argv[argc-1] inclusive shall contain pointers to strings, which are given implementation-defined values by the host environment … Read more