Problem Statement
Which of the given options is correct about the code snippet given below? #include <stdio.h> int main() { char *ptr = "aquarious"; int i; ptr += 1; while (1 < *ptr) { printf("%c", *ptr); } return 0; } Pick ONE option quarious Compile time error Infinite loop q Output Format Print the text of the correct option exactly as it appears above.