What does this code mean ?
for ( i = 1, i < n , i ++ )
i know i is an integer from this line
int curMax, i ;
also i know that n is an integer from this line
int CompareToMax (int array[ ], int n )
does this line means that n = 1,2,3,4 .... if that is the case then why is an array always starting like array [0] , then array [1] , etc ??
what's the point of defining array staring with [0], [1], [2]
and integers with 1,2,3...
2007-11-02
09:14:01
·
4 answers
·
asked by
sum142121
1
in
Programming & Design