home *** CD-ROM | disk | FTP | other *** search
/ Sams Teach Yourself C in 21 Days (6th Edition) / STYC216E.ISO / mac / Examples / Day08 / expenses.c < prev    next >
C/C++ Source or Header  |  2002-04-26  |  573b  |  29 lines

  1. /* expenses.c - Demonstrates use of an array */
  2.  
  3. #include <stdio.h>
  4.  
  5. /* Declare an array to hold expenses, and a counter variable */
  6.  
  7. float expenses[13];
  8. int count;
  9.  
  10. int main( void )
  11. {
  12.     /* Input data from keyboard into array */
  13.  
  14.     for (count = 1; count < 13; count++)
  15.     {
  16.         printf("Enter expenses for month %d: ", count);
  17.         scanf("%f", &expenses[count]);
  18.     }
  19.  
  20.     /* Print array contents */
  21.  
  22.     for (count = 1; count < 13; count++)
  23.     {
  24.         printf("Month %d = $%.2f\n", count, expenses[count]);
  25.     }
  26.     return 0;
  27. }
  28.  
  29.