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