Argumentos de linha de comando C ++

Torne os argumentos da linha de comando fáceis de usar:

int main(int argc, char* argv[])
{
std
::vector<std::string> args(argv[0], argv[argc]);
// Use 0 if you want all the arguments including the
// application. Use 1 if you just want the arguments.

// STUFF
}