What is the output of the following C++ code?
#include <iostream> using namespace std; int main() { cout.setf(ios::hex,ios::basefield); cout<<100; return 0; }
Reveal answer
Fill a bubble to check yourself
What is the output of the following C++ code?
#include <iostream> using namespace std; int main() { cout.setf(ios::hex,ios::basefield); cout<<100; return 0; }