Which of the following statements converts a String object variable named str to an int and stores the value in the variable x? a. int x = Integer.integer(str); b. int x-str; c. int x = Integer.parseInteger(str); d. int x = Integer.parseInt(str);