Which would be faster? Or are they near negligible? I am trying to get the fastest possible speed from this Windows utility. I checked the run time of each and even with a string of 10 commands or so, I get 0 ms. I don't know how they handle with higher quantities though.
for (int x(1); x
commands+=argv[x];
commands+=" ";
}
or
for (int x(1); x
commands=commands+argv[x]+" ";
}