Which error is this?

This is my code

How can I remove this error .

Due to this line-

a[i]=min(x,y,z);

min function takes only 2 arguments, not 3. These type of errors need to be patiently dealt with.

2 Likes

Thanks @vijju123 . I know that min takes 2 arguments but it was not showing clearly that this was the error so I was not able to understand what the error was.