helppppp

What are the values of i and n after this loop executes?
int n = 0;
for(int i = 0; i < 12; i++) {
n += 3;
}


I could tell you... but why don't you just try it out?


Last edited on
The answer is... *i and *n. Get the point?
at the end n=36....i=12
Topic archived. No new replies allowed.