Which XXX will prompt the user to enter a value greater than 10, until a value that is greater than 10 is actually input?

do {
System.out.println("Enter a number greater than 10:");
userInput = scnr.nextInt();
} while XXX;

a. (!(userInput < 10))
b. (userInput < 10)
c. (userInput > 10)
d. (!(userInput > 10))