Programming Exercise: Reverse the Command Line
Write a C program that will print out each command line argument on a separate line. However,you should print them out in reverse order. That is, the last command line argument is printedfirst. Do not have an off-by-one error. Make sure that your code looks clean and well indented!