I have an exam tomorrow and just going over quizzes I did not do all that good in and was wanting to know if anyone could assist me w\ my mistakes
Quiz 6
This question asks me to put in the output
int Function_one(int y, int x);
int main()
{
int x = 9,
y = 12,
z;
z = Function_One(x,y);
cout << x << " " << y << " " << z << endl;
return 0;
}
int Function_one(omt y, int x)
{
x = 2
return (y/x)
}
The output I put was:
9 12 6
the 6 was wrong and could someone tell me what I did wrong