1.

What is the output of this program?
#include 
using namespace std;
int main ()
{
cout << "Value of Line : " << __LINE__ << endl;
cout << "Value of File : " << __FILE__ << endl;
cout << "Value of Date : " << __DATE__ << endl;
cout << "Value of Time : " << __TIME__ << endl;
return 0;
}

A. Details about current file
B. Compilation Error
C. Runtime Error
D. Garbage value
E. None of these
Answer» B. Compilation Error


Discussion

No Comment Found

Related MCQs