This is an infinite loop

Average Rating
0 out of 5 stars. 0 votes.

This is an infinite loop

What will be the value of x after the following code is executed?int x = 10;while (x < 100);{ x += 10;}-90-100-110-This is an infinite loop