I know some basic stuff in C++ but what I don't get it is how to create a program for command prompt.
All I know is that main has to has these arguments:
int main(int argc,char* argv[]) {}
And I think I know what those arguments mean. char* argv[] - for what arguments command has (e.x. -a -b...) int argc - for the number of arguments
but...
I have discovered that in command prompt, commands don't have to have any queue on arguments com -k-s == com -s-k, and they don't have to have anything infront of an argument com -a == com /a == com a