Top

Discussion

#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; 
} 

 

  • A.Runtime Error
  • B.Compiler Error
  • C.uiz uiz uiz
    u u u
  • D.Quiz Quiz Quiz
    u u u

Answer: D

No answer description available for this question.
 

No comment is present. Be the first to comment.
Loading…

Post your comment