fork download
  1. #include <stdio.h>
  2.  
  3. union Address {
  4. char name[30];
  5. char home_address[50];
  6. char hostel_address[50];
  7. char city[20];
  8. char state[20];
  9. char zip[10];
  10. };
  11.  
  12. int main() {
  13. union Address a;
  14.  
  15. printf("Enter present address: ");
  16. scanf("%s", a.home_address);
  17.  
  18. printf("Present Address: %s\n", a.home_address);
  19.  
  20. return 0;
  21. }
  22.  
Success #stdin #stdout 0.01s 5320KB
stdin
Hostel_Block_A
stdout
Enter present address: Present Address: Hostel_Block_A