fork download
  1. #include <stdio.h>
  2.  
  3. struct a {
  4. int a,b,c;
  5. };
  6.  
  7. int main(void) {
  8. struct a A;
  9. struct a *pa;
  10. pa = &A;
  11. printf("%d\n", sizeof(*pa));
  12.  
  13. // your code goes here
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 5532KB
stdin
Standard input is empty
stdout
12