I need to save all arguments to a vector or something like this. I\'m not a programmer, so I don\'t know how to do it, but here\'s what I\'ve got so far. I just want to call
i need to save all arguments to a vector or something
You can use the range constructor of the vector and pass appropriate iterators:
std::vector arguments(argv + 1, argv + argc);
Not 100% sure if that's what you were asking. If not, clarify.