So typically a program with an argument is invoked in the following way:
./helloworld -test
I've been asked to invoke a C program in command-line simply by typing:
helloworld test
In other words, without the "./". I should be able to launch my program in a Unix command-line just as I would "ls". The tools I currently have (that I am aware of) at my disposal to make this happen are Makefile and argv[], but I can't find any questions or documentation on the internet relevant to this particular problem.