View Single Post
  #2 (permalink)  
Old December 6th, 2003, 10:03 AM
programmed programmed is offline
Authorized User
 
Join Date: Oct 2003
Posts: 25
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Hi,
have you tried using a for loop with the decrementing operator to reverse the order of the array?
 Say,
 const MAX 10
 int num[MAX];
  for(int i=MAX;i>0;--i)
    {
      num[i]=note
    }
 I don' whether i'm on point.
 Bye, Programmed.


Reply With Quote