fork download
  1. #include <stdio.h>
  2.  
  3. struct dados {
  4. int a, b;
  5. char *s;
  6. char *v;
  7. char *x;
  8. char *y;
  9. };
  10.  
  11. int main(void) {
  12. printf("%d\n", 10 * sizeof(int));
  13. printf("%d\n", sizeof(struct dados));
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 5548KB
stdin
Standard input is empty
stdout
40
40