Home » C Programming » Arrays » Question
  1. What is the correct syntax to send a 3-dimensional array as a parameter? (Assuming declaration int number[4][3][2];)
    1. func(**number);
    2. func(*number);
    3. func(&number);
    4. func(number);
    5. None of these
Correct Option: D

func(number);



Your comments will be displayed only after manual approval.