Will the strlen() function below get called just once (with the value stored for further comparisons); or is it going to be called every time the comparison is performed?
for (i = 0; i < strlen(word); i++)
{ /* do stuff */ }
|
|
|
That's implementation-dependent. Usually, it gets called every time, but, if the compiler can see that See: http://underhanded.xcott.com/?page_id=15 for a well-known example of this being exploited. :-) |
|||||||||||||||||||
|
|
It will be evaluated for every iteration of the loop (edit: if necessary). Like Tatu said, if But if |
|||||||||||||||||
|
|
I'll sometimes code that as ...
... so that strlen is only called once (to improve performance). |
|||
|
|
|
The number of times
Take the following example:
In this example, the variable However, the compiler can factor out the
The function has declared that the variable When in doubt, you can always perform the optimization yourself, which may present more readable code in this case. |
|||||
|
|
strlen checks the lenght of the provided string. Which means that if the lenght is 10. Your iteration will keep on going as long as i is below 10. And in that case. 10 times. |
|||||||||||||
|
|
It will be called for each iteration. The following code only calls strlen function once.
|
|||
|
|