1.

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» D. No Output


Discussion

No Comment Found