int i=1;
for( ; i<=5; i+=2);
System.out.println(i);
Answers
Answered by
1
Answer:
6
Explanation:
Because semicolon is there in for loop at last .so it considers only last value of the ith value
Similar questions