| <<< | Index | >>> |
Inside for, control passes to the increment step.
for ( i = 0; i < n; ++i ) {
int result = get_data( i );
if ( result < 0 ) // skip negative values
continue;
// process zero and positive values...
}
| <<< | Index | >>> |