fork(1) download
  1. #include<stdio.h>
  2.  
  3. union address
  4. {
  5. char name;
  6. char street;
  7. int city_id;
  8. int state_id;
  9. long description;
  10. };
  11. int main(void) {
  12. // your code goes here
  13. union address addr;
  14. printf("%d\n",sizeof(address));
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0s 5456KB
stdin
Standard input is empty
stdout
8