Top

Discussion

Predict the output of below code:

int main() 
{ 
    char a[2][3][3] = {'g','e','e','k','s','f','o', 
                           'r','g','e','e','k','s'}; 
    printf("%s ", **a); 
    getchar(); 
    return 0; 
} 

 

  • A.Geeks
  • B.Error
  • C.geeksforgeeks
  • D.No Output

Answer: C

No answer description available for this question.

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

Post your comment