1.

What is the output of this program?
#include 
using namespace std;
double Time()
{
double T = 26.25;
double H = T;
return H;
}
int main()
{
double H = Time();
cout << "Weekly Hours: " << H;
return 0;
}

A. Compilation Error
B. Runtime Error
C. Garbage value
D. Weekly Hours: 0
E. Weekly Hours: 26.25
Answer» F.


Discussion

No Comment Found

Related MCQs