Discussion :: C++ - MCQs
-
What is the output of this program?
#include < iostream >
using namespace std;
main()
{
double a = 21.09399;
float b = 10.20;
int c ,d;
8. c = (int) a;
d = (int) b;
cout << c <<'t'<< d;
return 0;
}
Answer : Option C
Explanation :
In this program, we are casting the operator to integer, So it is printing as 21 and 10
Be The First To Comment