I tried passing 2 arguments in the command line argument in my project like this: argument1, argument2 but later realized that it needs to be like this: argument1 argument2
Why visual studio separates arguments with spaces not with commas? Logically arguments are passed into function which separate their arguments with commas fct(a,b).
I did not know that Visual studio separates arguments with spaces not commas. Why is that?
This isn’t only with visual studio.
Input from the command line always takes its argument delimited by spaces. This is just how it works.