(Choose 1 answer)
Consider the following code (suppose that line numbers are not included and all necessary libraries are included):
1.int smaller(int x, int y){
2. if(x<=y)
3. return(x);
4. else
5. return(*(&y));
6. }
7.int main(){
8. int i,n,x,y, min;
9. printf("How many pairs of numbers?");
10. scanf("%d", &n);
11. for(i=1, i<=n, i++) {
12.printf("Enter the pair of numbers:");
13.scanf("%d%f", &x,&y);
14.min=small(x,y);
15. printf(" Smaller: %f",min);
16. }
17. return 0;
18.}
On compiling the above code, an error is displayed on which line first?
A. 5
B. 11
C. 13
D14
Exit 28