Q:

Predict the output of below code:

0

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

  1. Geeks
  2. Error
  3. geeksforgeeks
  4. No Output

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Correct Answer:

geeksforgeeks

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

If storage class is missing in the array definitio... >>
<< Predict the output of below code:...