Answers

Question and Answer:

  Home  C++ Operator Overloading

⟩ What is the output of this program? #include <iostream> using namespace std; int main() { double a = 21.09399; float b = 10.20; int c ; c = (int) a; cout << c ; c = (int) b; cout << c ; return 0; } a) 2110 b) 1210 c) 21 d) None of the mentioned

a) 2110

 181 views

More Questions for you: