What output will be produced by the following code segment?i…
Questions
Whаt оutput will be prоduced by the fоllowing code segment?int mult (int а, int b){ return (а * b);}int div (double a, double b){ return (a/b);}int main(){ int int1 = 5, int2 = 2; double db1 = 5.0, db2 = 2.0; cout