For example this code runs ok. The for loop body seems to count as only 1 instruction. is this guaranteed to work? and not considered a smell?
for(int i = 0; i<10; i++)
if(i%2==0){
printf("number ");
printf("%d\n", i);
} else
printf("this is not it\n");