home *** CD-ROM | disk | FTP | other *** search
/ Sams Teach Yourself C in 21 Days (6th Edition) / STYC216E.ISO / mac / Examples / Day11 / simple.c < prev    next >
C/C++ Source or Header  |  2002-05-02  |  385b  |  25 lines

  1. /* simple.c - Demonstrates the use of a simple structures*/
  2.  
  3. #include <stdio.h>
  4.  
  5. int length, width;
  6. long area;
  7.  
  8. struct coord{
  9.     int x;
  10.     int y;
  11. } myPoint;
  12.  
  13. int main( void )
  14. {
  15.     /* set values into the coordinates */
  16.     myPoint.x = 12;
  17.     myPoint.y = 14;
  18.  
  19.     printf("\nThe coordinates are: (%d, %d).",
  20.            myPoint.x, myPoint.y);
  21.  
  22.     return 0;
  23. }
  24.  
  25.