fork(2) download
  1. #include <iomanip>
  2. #include <iostream>
  3. #include <sstream>
  4.  
  5. int main() {
  6. std::stringstream os;
  7.  
  8. os << &std::hex; // MISRA warning on this line
  9. os << std::setw(2);
  10. os << std::setfill('0');
  11. os << 13;
  12.  
  13. std::cout << os.str() << "\n";
  14. return 0;
  15. }
Success #stdin #stdout 0s 3428KB
stdin
Standard input is empty
stdout
0d