static Void main(string[] args)
{
int a = 5;
int b = 6;
float c = 7.2f;
math (ref a, ref b, ref c);
Console.WriteLine(a + " " + b + " " + c);
}
static int math(/*add parameter declaration */)
{
a += b;
b *= (int)c;
c += a * b;
return 0;
}Select an option to see the answer and solution.