fork download
  1. #include <iostream>
  2.  
  3. struct sExample
  4. {
  5. bool m_bFirst;
  6. char m_cChar;
  7. int m_nValue;
  8. };
  9.  
  10. int main (int argc, char** argv)
  11. {
  12. sExample sEx;
  13. std::cout << sEx.m_bFirst << (int)sEx.m_cChar << sEx.m_nValue;
  14. return 0;
  15. }
Success #stdin #stdout 0s 2852KB
stdin
Standard input is empty
stdout
000