1.

What is the output of the following program?
#include 
using namespace std;
int main()
{
float n = 143.0f;
cout << n << endl;
return 0;
}

A. 143.0f
B. Compilation Error
C. Runtime Error
D. 143
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs