Home » C Programming » Pointers » Question
  1. Which of the following is the correct syntax to send an array as a parameter to function?
    1. function(arr[size]);
    2. function(*arr);
    3. function(#arr);
    4. function(&arr);
    5. None of these
Correct Option: D

function(&arr);



Your comments will be displayed only after manual approval.