-
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;
}
-
- Details about current file
- Compilation Error
- Runtime Error
- Garbage value
- None of these
Correct Option: A
In this program, we are using the macros to print the information about the file.