What will be the output of the following C++ code?
#include <iostream>
using namespace std;
int main()
{
unsigned long x = 64;
cout << x << oct << x << endl;
return 0;
}
#include <iostream>
using namespace std;
int main()
{
unsigned long x = 64;
cout << x << oct << x << endl;
return 0;
}A. 64100
B. 48
C. 345
D. 496
Answer: Option A

Join The Discussion