I have a C++ program that accepts three inputs: an integer for width, an integer for height, and a filename. Right now, I compile, and run the program like this (assuming I named it prog):
>prog
// hit enter
>128 128 output.ppm
This results in a successful output, but the program description says the proper command-line syntax is:
>prog w h filename
That's all it says. Does this imply that my program should be able to start on the same line? Perhaps it implicitly means you hit enter after typing the program name, but if not, is there a way to actually do this?
mainis run, and then it waits for people to type in input. In the second example, the OS runsmainand passes it three parameters,"w","h", and"filename"; – Mooing Duck Jan 16 at 17:34echo 128 128 output.ppm | prog– GigaWatt Jan 16 at 17:52