CS 70

Before You Start…

Consider the following function:

Cow bessie;
for (int i = 0; i < N; ++i) {
    bessie.moo();
}

How many times does bessie moo?

(When logged in, completion status appears here.)