home *** CD-ROM | disk | FTP | other *** search
- /* Demonstrates getting data into and out of structure members */
- /* using the . and -> operators. */
-
- struct house { /* struct.c */
- int foundation;
- long walls;
- double roof;
- char address[20];
- };
-
- main()
- {
- struct house h, *hp;
-
- h.foundation = 999;
- h.walls = 111111L;
- h.roof = 23.21e3;
- strcpy(h.address,"223 Sunny Place");
- printf("Foundation: %d, walls: %ld, roof: %.2g\n",h.foundation,h.walls,h.roof);
- printf("Address: %s\n",h.address);
- hp = &h;
- printf("Foundation: %d, walls: %ld, roof: %.2g\n",hp->foundation,hp->walls,hp->roof);
- strcpy(hp->address,"225 Sunny Place");
- printf("Address: %s\n",hp->address);
- }