home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_300 / 355_03 / slk3.exe / TEST / TST / STRUCT.TST < prev    next >
Text File  |  1989-06-27  |  218b  |  24 lines

  1. struct s {int i; char v[3];};
  2. struct s t;
  3.  
  4. struct s
  5. struct_test()
  6. {
  7.     int a;
  8.  
  9.     a = 5;
  10.     return t;
  11. }
  12.  
  13. union u {int i; char v[3];};
  14. union u ut;
  15.  
  16. union u
  17. union_test()
  18. {
  19.     int a;
  20.  
  21.     a = 6;
  22.     return ut;
  23. }
  24.