PREV INDEX NEXT

Author: Unknown
Subject: Declaring int i; at the top
Date: Saturday, 14 Nov 2020, 04:22:48

If I have many for loops starting 

for (int i=0; i<N; i++)

do I save memory by declaring int i; at the top, so all the for loops are 

for (i=0; i<N; i++)?
PREV INDEX NEXT