1.

What is the output of this program?
#include 
using namespace std;
main()
{
double num = 23.9399;
float num0 = 20.23;
int p ,q;
p = (int) num;
q = (int) num0;
cout << p < return 0;
}

A. 20 23
B. 23.9399
C. 20.23
D. 23 20
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs