1.

#include<stdio.h>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;}(A) Runtime Error(B) Compiler Error(C) uiz uiz uizu u u(D) Quiz Quiz Quizu u u

Answer»


Discussion

No Comment Found

Related InterviewSolutions