how to find first element in an array

let assum i use array of 100 the i input 50 element and now i want to find which one is first in array...
without using pointer
Last edited on
Please elaborate. Does array[0] does the trick?
Last edited on
array[0];
Because you start counting from 0 not 1;
Topic archived. No new replies allowed.