| 1 | #include <stdio.h> |
| 2 | |
| 3 | int main(){ |
| 4 | for (int i = 0; i < 15; i++) |
| 5 | { |
| 6 | if(i==5){ |
| 7 | // break; // exit the loop now! |
| 8 | continue; // skip this iteration now |
| 9 | } |
| 10 | printf("i is %d\n", i); |
| 11 | } |
| 12 | |
| 13 | printf("For loop is done!"); |
| 14 | |
| 15 | return 0; |
| 16 | } |
nothing calls this directly
no outgoing calls
no test coverage detected