Almost all languages have a foreach loop (function) or something similar. I wonder if C has one? Can you post some example code?
|
feedback
|
|
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 | |||||||||||
feedback
|
|
No, it doesn't. | |||||
feedback
|
|
Here is a full program example of a for-each macro in C99:
| |||||||||||||
feedback
|
|
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).
| |||||||
feedback
|
|
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:
| |||||||
feedback
|
|
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. | |||
|
feedback
|
|
For a C++ class with size() and operator[] defined, try:
This might not be the fastest, though. | |||||
feedback
|
|
@Eric: This doesn't work when you're using "break" or "continue". This could 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. (Sorry, I don't have privileges to leave comments.) | |||
|
feedback
|