What is the output of the following code snippet
int i = 1;
while (i <= 10)
{
System.out.println("Inside the while loop");
i = i + 10;
}
a) No output because of compilation error.
b) "Inside the while loop" will be displayed 10 times.
c) No output after successful compilation.
d) "Inside the while loop" will be displayed only once.