Almost all languages have a foreach loop (function) or something similar. I wonder if C has one? Can you post some example code?
|
|
|
C doesn't have a foreach, but macros are frequently used to emulate that:
And can be used like
Iteration over an array is also possible:
And can be used like
Edit: In case you are also interested in C++ solutions, boost has it (but C++ itself doesn't have a native for-each loop yet): Boost.ForEach |
|||||||||||||||||||||
|
|
No, it doesn't. |
|||||||
|
|
There is no foreach in C. You can use a for loop to loop through the data but the length needs to be know or the data needs to be terminated by a know value (eg. null).
|
|||||||
|
|
Here is a full program example of a for-each macro in C99:
|
|||||||||||||||
|
|
C has 'for' and 'while' keywords. If a foreach statement in a language like C# looks like this ...
... then the equivalent of this foreach statement in C might be be like:
|
||||
|
This is a fairly old question, but I though I should post this. It is a foreach loop for GNU C99.
This code has been tested to work with gcc, icc and clang on GNU/Linux. |
|||
|
|
|
Eric's answer doesn't work when you're using "break" or "continue". This can be fixed by rewriting the first line: Original line (reformatted):
Fixed:
If you compare it to Johannes' loop, you'll see that he's actually doing the same, just a bit more complicated and uglier. |
||||
|
|