$input = "azz"; print ++$input;
C
Correct answer
Explanation
The ++ operator on a string increments it with alphanumeric carryover. 'azz' increments to 'baa' - the 'z' wraps to 'a' and carries to the next position, then the second 'z' also wraps and carries to the first character.