Considere a seguinte função em C:
int fun(int a, int b) { int i = 10, c; c = 20 * 1024 + i; while (++i < a + b) { if (a + b < 3 * i + 5) c += 2 * i; } return c; }