fork download
  1. #include <list>
  2. #include <iostream>
  3.  
  4. struct ListNode
  5. {
  6. int a, b, c, d;
  7.  
  8. };
  9.  
  10. int main() {
  11. std::cout<<sizeof(std::list<ListNode>);
  12. return 0;
  13. }
Success #stdin #stdout 0.01s 2680KB
stdin
Standard input is empty
stdout
8