fork download
  1. #include <iostream>
  2. using namespace std;
  3. struct Node
  4. {
  5. int chrN;
  6. long int pos;
  7. int nbp;
  8. string Ref;
  9. string Alt;
  10. };
  11. int main() {
  12. // your code goes here
  13. cout << sizeof(Node) << endl;
  14. return 0;
  15. }
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
20