View Single Post
Join Date: Mar 2008
Posts: 370
Reputation: NinjaLink is an unknown quantity at this point 
Solved Threads: 0
NinjaLink NinjaLink is offline Offline
Posting Whiz

Re: Need help removing number from an array

 
0
  #9
Oct 21st, 2008
Nevermind...I figured out what was wrong....

  1. for (int i = index; i < length; i++)
  2. {
  3. numbers[i] = numbers[i+1];
  4. }
  5.  
  6. printIt(numbers,11);

Out of an hour of trying to figure it out, that is all i had to do...wow!
Reply With Quote