How do I iterate backwards through the array? What do I need to do to the for
statement?
public static void main(String args[])
{
int a[] = {0, 1, 2, 3};
for (int i=1; i<=a.length; i++)
{
System.out.println("a[i] = " + a[i]);
}
}