Normalized loop: Difference between revisions

Content deleted Content added
Cydebot (talk | contribs)
m Robot - Moving category Compiler theory to Compiler construction per CFD at Wikipedia:Categories for discussion/Log/2011 January 31.
Line 62:
<source lang=c>
// Example 1 -> normalized
for ( i = 0; i < (MAX/3-7)/3; i++ )
a[i*3+7] = b[i*3+7] + 5;
</source>