Q60
What will be the output of the following C++ code? #include #include #include using namespace std; void func(int a, int b) if(b == 0) throw "This value of b will make the product zero. " "So please provide positive values. "; else cout<<"Product of "<<a<<" and "<<b<<" is: "<<a*b<<endl; int main() try func(5,0); catch(char* e) cout<<e;
A.
0
B.
Aborted (core dumped)
AnswerC.
This value of b will make the product zero. So please provide positive values.
D.
Product of 5 and 0 is: 0
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board