Scope Question

Is the scope of both i and j confined to only the 'for' loop?

  for (uint8_t i=0; i<10; i++) {

    uint8_t j = i + 100;

    // do stuff

  }

Yes.