Q. What is the output of this program?
Code:
#include <iostream>
using namespace std;
int main()
{
unsigned long num = 56;
cout << num << oct <<" " << num << endl;
return 0;
}
β
Correct Answer: (D)
56 70