Training courses
Kernel and Embedded Linux
Bootlin training courses
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* c99 for loops */ extern void foo(int); int main(void) { // Test the basic functionality for (int i = 0; i < 10; i++) foo(i); // Test that the scope of the iterator is correct for (int i = 0; i < 10; i++) continue; return 0; }