Consider the following code:
int x; for (x = 0; x <= 7; x += 7) { System.out.println("Here"); } System.out.println(x);
What does the line System.out.println(x); print to the screen?
7
This code results in a compiler error.
8
Here Here 14
0
Answers
Answered by
0
Answer is Here Here 14
Thanks
Thanks
Similar questions