fork download
  1. /******************************************************************************
  2.  
  3. Welcome to GDB Online.
  4.   GDB online is an online compiler and debugger tool for C, C++, Python, PHP, Ruby,
  5.   C#, OCaml, VB, Perl, Swift, Prolog, Javascript, Pascal, COBOL, HTML, CSS, JS
  6.   Code, Compile, Run and Debug online from anywhere in world.
  7.  
  8. *******************************************************************************/
  9. #include <iostream>
  10. #include <stdint.h>
  11.  
  12. struct NavMsgStruct {
  13. short latitude;
  14. short altitude;
  15. short blah;
  16. int32_t blahblah;
  17. };
  18.  
  19. int main()
  20. {
  21. NavMsgStruct msgStruct;
  22. msgStruct.latitude = 400;
  23. std::cout << sizeof(msgStruct) << std::endl;
  24. return 0;
  25. }
Success #stdin #stdout 0s 5304KB
stdin
45
stdout
12