Working with arrays
Remember we can obtain the length of an array
So if we want to print out all the command line arguments passed to a program, then:
public static void main (String args []) {
for (int i =0; i < args.length; i++) {
System.out.println(args[i]);