C | String | Question 8

Last Updated :
Discuss
Comments
Output? C
int main() {     char a[2][3][3] = {'g','e','e','k','s','q','u','i','z'};     printf("%s ", **a);     return 0; } 
Compiler Error
geeksquiz followed by garbage characters
geeksquiz
Runtime Error
Tags:
Share your thoughts in the comments