Code Sinking: Difference between revisions

Jump to navigation Jump to search
no edit summary
No edit summary
No edit summary
Line 13: Line 13:
#pragma EMX_TRANSFORMATION CodeSinking
#pragma EMX_TRANSFORMATION CodeSinking
int main(void) {
int main(void) {
  int n = 10;
    int n = 10;
 
    for (int i = 0; i < 2; ++i) {
  for (int i=0; i<2; ++i) {
        int x = n * n;
    int x = n * n;
        int y = n * n * n;
    int y = n * n * n;
        int z;
    int z;
        if (i == 0) {
   
            z = x;
    if (i == 0) {
        } else {
      z = x;
            z = y;
    } else {
        }
      z = y;
        printf(” % d\ n”, z);
     }
     }
  }
}
}
</syntaxhighlight>
</syntaxhighlight>
Cookies help us deliver our services. By using our services, you agree to our use of cookies.

Navigation menu