Question: What will be the output of the following program?
#include
int BixFunction(int a, int b = 3, int c = 3)
{
cout<< ++a * ++b * --c ;
return 0;
}
int main()
{
BixFunction(5, 0, 0);
return 0;
}
[A].8
[B].6
[C].-6
[D].-8
Answer: Option C