fork download
  1. #include <stdint.h>
  2. #include <stdio.h>
  3. struct foobar{
  4. uint16_t foo;
  5. uint64_t bar;
  6. };
  7. int main(){
  8. printf("%d\n", sizeof(struct foobar));
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 1832KB
stdin
Standard input is empty
stdout
12