I came across the following question :
How many times will the following for loop run -
for(;0;)
printf("hello");
I executed and it runs 1 time . I am not able to understand how?
| show 3 more comments |
|
This will not execute even for 1 time. I guess you have a bad compiler? Ok. I think you are using Turbo C ;-) EDIT: From C99 standard:
It clearly states that condition is evaluated first before executing the loop. Any standard conforming compiler should not execute the loop |
|||||||||||||||
|
|
Either the code you copied here is not really what is in your .c file or you have a buggy compiler. Maybe you have an additional semicolon?: |
|||
|
|
|
for loops are defined as:
Decoding:
Means
Edited to show correct for loop decoding. |
|||||
|
|
The code as written above will never enter the for loop. Check the code on ideone link. My be this not what you have in your souce code, you probably typed a
In that case your program will print "hello". |
||||
|
|
|
Since the expression is 0, it is taken to be false. So, in this case the loop runs 0 times. |
|||
|
|
0, checked before running the code inside. Are you sure you made it properly ? – Eregrith Jun 15 '12 at 9:59for(;0;); printf("hello");– rodrigo Jun 15 '12 at 10:03