Home » C Programming » Pointers » Question
  1. Comment on the following two operations.
    int *ArrayA[] = {{11, 20, 13}, {11, 21, 13, 41}}; //- 1
    int ArrayB[][] = {{15, 25, 35}, {10, 25, 30, 45}}; //- 2
    1. Neither of them work
    2. I works, II doesn’t
    3. II works, I doesn’t
    4. Both of them work
    5. None of these
Correct Option: D

Neither of them work



Your comments will be displayed only after manual approval.