In C, variables m and n are both of type int. Consider the following code:
int m, n;
for (m = 0, n = -1; n = 0; m++, n++)
n++;
In standard C semantics (where = is assignment, not comparison), how many times does the loop body (n++ inside the loop) execute?
Options:
Login required