Which line of code, after execution, results in i having the value of 1?
i
for(i=1; i<=1; i++);
for(i=1; i=10; i++);
for(i=1; i==10; i++);
for(i=10; i>=1; i--);