#include
int main()
{
char str[] = "GeeksQuiz";
printf("%s %s %s\n", &str[5], &5[str], str+5);
printf("%c %c %c\n", *(str+6), str[6], 6[str]);
return 0;
}
Answer: D
No answer description available for this question.