Top

Discussion

Output?

int main() 
{ 
    char a[2][3][3] = {'g','e','e','k','s','q','u','i','z'}; 
    printf("%s ", **a); 
    return 0; 
} 

 

  • A.Compiler Error
  • B.geeksquiz followed by garbage characters
  • C.geeksquiz
  • D.Runtime Error

Answer: C

No answer description available for this question.
 

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

Post your comment