Thread: recursive finding index of the min number in array??

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Registered User
    Join Date
    Oct 2008
    Location
    TX
    Posts
    2,059
    array subscripts start at zero in C so go over this again
    Code:
    if (index==size)
    Edit: never mind I did not read the code only the section below.

    size=4;
    index=1;
    minindex=1;
    Last edited by itCbitC; 01-17-2009 at 12:48 PM.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. convert 32 bit number to array of digits
    By droseman in forum C Programming
    Replies: 11
    Last Post: 02-18-2009, 09:37 AM
  2. Replies: 2
    Last Post: 02-08-2009, 09:26 PM
  3. Replies: 2
    Last Post: 07-11-2008, 07:39 AM
  4. Array of boolean
    By DMaxJ in forum C++ Programming
    Replies: 11
    Last Post: 10-25-2001, 11:45 PM
  5. Hi, could someone help me with arrays?
    By goodn in forum C Programming
    Replies: 20
    Last Post: 10-18-2001, 09:48 AM