fork download
  1. #include <stdio.h>
  2.  
  3. typedef struct _test{
  4. int a;
  5. int b;
  6. }test;
  7.  
  8. int main(void) {
  9. // your code goes here
  10. test stTest[3];
  11.  
  12. printf("%d\n", sizeof(stTest));
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0s 5448KB
stdin
Standard input is empty
stdout
24