Sorry for such a noobie question, but how can I get a program to read the data i input with my program, like how cmd does it with the options
shutdown.exe -f
how do i read the example -f into my program?
|
Sorry for such a noobie question, but how can I get a program to read the data i input with my program, like how cmd does it with the options
how do i read the example |
|||
|
|
|
This should print out each of the whitespace delimited parameters which were passed to your program.
|
||||
|
If you're using plain old C++, your main function will need to look something like this:
where argc is the number of whitespace separated items, and argv is an array of pointers to each one |
|||||||
|