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?

link|improve this question

76% accept rate
This program will accept any number of temperatures-- up to 40. But when I omit the line && day<LIM, it accepts up to 48. – aer May 21 '11 at 8:06
Please edit your old question with further information instead of starting a new one. – jonsca May 21 '11 at 8:07
looking at the other question, you probably could have asked in the comments section of the accepted answer why it was a good idea to add the extra condition and then waited for the answerer to explain. But, it's sometimes a bit of "six of one, half a dozen of the other". The rul I follow is: if the second question can stand alone, independent of the first (and it's not an exact duplicate), it's probably okay. So (IMNSHO) both approaches would have been valid. Others may disagree of course, I'm just one cell in the swarm here. – paxdiablo May 21 '11 at 8:21
because C isn't a declarative language. – Nick Dandoulakis May 21 '11 at 8:31
feedback

closed as exact duplicate by Jeff Atwood May 21 '11 at 21:14

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

4 Answers

up vote 3 down vote accepted

Because, if you enter 41 numbers, you will write to a location outside the array, invoking the dreaded undefined behaviour. When you attempt to write to temp[40] (the 41st element), you'll likely clobber memory that you shouldn't. It may work for a little bit beyond the end of the array but that's the nature of undefined behaviour. It's still not a good idea.

The day < LIM bit will force the loop to exit when you've entered 40 temperatures, regardless of what value you've actually entered.

link|improve this answer
feedback

To avoid overflow of the array. The temp array has LIM cells, and you need to check that you don't try to access memory beyond that because it will cause an undefined behavior.

If you want to get more than 40 elements, you should allocate more memory for them, which can be done by defining LIM to a bigger value, like #define LIM 48.

link|improve this answer
feedback

Because C doesn't do magic. It doesn't check if you step outside the allocated memory. It can't know if an access is valid or not so it tries it anyway.

link|improve this answer
feedback

It is "satisfied" - why do you think it would not be. And when posting here please post the REAL code you are asking about.

link|improve this answer
What difference does it make by putting #include<stdio.h> as a header n my program? – aer May 21 '11 at 8:37
I guess it's for InputOutput?\ – aer May 21 '11 at 8:38
@aerohn It makes it compile, which your code would not, as it also had a syntax error in it - no semicolon at the end of the do-while. – nbt May 21 '11 at 9:28
Butterworth I think, there should have a semicolon at the end of do while... I think you're talking about the while(){} not the do{}while();, aren't you? – aer May 23 '11 at 2:02
@aerohn Yes, I added one in my edit. – nbt May 23 '11 at 6:20
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.