State the output of the following java program with an explanation
int i;
for( i = 2010;i<=2010;i--){} System.out.println(i);
Answers
Answered by
0
Answer:
2010
Explanation:
loop will execute only 1 time
Similar questions