I am new to C++ and I would like to know how can I do a simple program where some functions are available.
For example:
mypg.exe function1 string1
mypg.exe function1 textfile1
Takes the text from the str/file and shows or prints.
And then:
mypg.exe function2 string1
mypg.exe function2 textfile1
Uses the text for a different thing... and so on.
Any manual/tutorial or help? What should I learn to be able to do this?
Thanks a lot :)
mypg.exe function1 mystringshould the behavior really change depending on whether there happens to be a file called mystring in the current directory? – sepp2k Jun 22 '10 at 12:56mypg.exe function1 "this is a string"ormypg.exe function1 -f "this is a filename"– sepp2k Jun 22 '10 at 13:24