Home » C Programming » Pointers » Question
  1. Comment on the following two operations.
    int *arr[] = {{11, 20, 13}, {11, 20, 31, 40}}; //- 1
    int array[5][5] = {{10, 12, 30}, {11, 21, 30, 14}};//- 2
    1. 1 won’t work, 2 will work
    2. Neither of them will work
    3. 1 and 2, both will work
    4. 1 will work, 2 will not
    5. None of these
Correct Option: A

1 won’t work, 2 will work



Your comments will be displayed only after manual approval.