Thread
:
Help with arrays needed
View Single Post
#
2
(
permalink
)
December 6th, 2003, 10:03 AM
programmed
Authorized User
Join Date: Oct 2003
Posts: 25
Thanks: 0
Thanked 0 Times in 0 Posts
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.
programmed
View Public Profile
Find all posts by programmed