Possible Duplicate:
Turbo C Array Question
#include <stdio.h>
#define LIM 40
int main()
{
int day=0;
float temp[LIM];
do
{
printf("Enter temperature for day %d.", day);
scanf("%f", &temp[day]);
}
while(temp[day++] && day<LIM );
}
About the last line. Why is it not satisfied with while(temp[day++] > 0)? since I have set the LIM with the value of 40? Why should I add some additional condition, like day<LIM?
&& day<LIM, it accepts up to 48. – aer May 21 '11 at 8:06