home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c025 / 1.ddi / STRUCT.C < prev    next >
Encoding:
C/C++ Source or Header  |  1985-02-17  |  651 b   |  26 lines

  1. /* Demonstrates getting data into and out of structure members */
  2. /* using the . and -> operators. */
  3.  
  4. struct house {        /* struct.c */
  5.     int foundation;
  6.     long walls;
  7.     double roof;
  8.     char address[20];
  9. };
  10.  
  11. main()
  12. {
  13.     struct house h, *hp;
  14.  
  15.     h.foundation = 999;
  16.     h.walls = 111111L;
  17.     h.roof = 23.21e3;
  18.     strcpy(h.address,"223 Sunny Place");
  19.     printf("Foundation: %d, walls: %ld, roof: %.2g\n",h.foundation,h.walls,h.roof);
  20.     printf("Address: %s\n",h.address);
  21.     hp = &h;
  22.     printf("Foundation: %d, walls: %ld, roof: %.2g\n",hp->foundation,hp->walls,hp->roof);
  23.     strcpy(hp->address,"225 Sunny Place");
  24.     printf("Address: %s\n",hp->address);
  25. }
  26.