On Wed, Jul 10, 2024 at 6:16 AM Karthik Nayak <karthik.188@xxxxxxxxx> wrote: > > Eric Ju <eric.peijian@xxxxxxxxx> writes: > > > Some code declares variable i and only uses it > > in a for loop, not in any other logic outside the loop. > > > > Change the declaration of i to be inside the for loop for readability. > > > > If we're doing this anyways, we could replace the 'int' with 'size_t' > too. > Thank you. Fixed in V2 > [snip]