Trace through the following loop.
int n = 20; for ( n = 0; n < 8; n++) { n = n + 4; printf("%d\n", n); } printf("%d\n", n);