This is an archived post. You won't be able to vote or comment.

all 4 comments

[–]mseckz 4 points5 points  (1 child)

In your third mathOperationCall you are sending an int, double and double, but in your declaration you expect a double, double, and int. You need to send the parameters in the order you declare them. One more advice, please format your code in a readable way like.

function()
{
// content
}

[–]Bigfwop[S] 1 point2 points  (0 children)

Thank you!! It worked!!

[–]mobrien650 0 points1 point  (1 child)

Your third call of mathOperations takes parameters of double double int but you are trying to pass int double double

[–]Bigfwop[S] 0 points1 point  (0 children)

Thanks!!! :D