fork download
  1. #include <iostream>
  2. #include <iomanip>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. unsigned long long a = 0xffffffffULL;
  8. cout<<hex<<setw(16)<<setfill('0')<<a<<endl;
  9. a<<=16;
  10. cout<<hex<<setw(16)<<setfill('0')<<a<<endl;
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 2740KB
stdin
Standard input is empty
stdout
00000000ffffffff
0000ffffffff0000