Home » C Programming » Functions » Question
  1. Which of the following function declaration is illegal?
    1. int 3BHK(int*, int []);
    2. int 2BHK(int);
    3. int IBHK(int s);
    4. All of above
    5. None of these
Correct Option: D

int 3BHK(int*, int []); or int 2BHK(int); and int IBHK(int s); function declaration are illegal



Your comments will be displayed only after manual approval.