My application has potentially a huge number of arguments passed in and I want to avoid the memory of hit duplicating the arguments into a filtered list. I would like to fi
The operating system push the argv and argc into the applicaton stack before executing it, and you can treat them like any other stack variables.