Hi,
I had a noobie question:
i = 0;
while (len i) && (SOME_VAL != arr [i])
i++;
In the above snippet if len is the number of elements in arr, when i ==
len, since the first condition fails, will the second one not be
evaluated at all?
Hope to hear from someone out there. Thanks.
I had a noobie question:
i = 0;
while (len i) && (SOME_VAL != arr [i])
i++;
In the above snippet if len is the number of elements in arr, when i ==
len, since the first condition fails, will the second one not be
evaluated at all?
Hope to hear from someone out there. Thanks.
Comment