InterviewSolution
Saved Bookmarks
| 1. |
What will be the output produced by the following C code:int main(){ int array[5][5]; printf("%d",( (array == *array) && (*array == array[0]) )); return 0; }(A) 1(B) 0(C) 2(D) -1 |
| Answer» | |