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

  1. /* random.c - Demonstrates using a multidimensional array */
  2.  
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. /* Declare a three-dimensional array with 1000 elements */
  6.  
  7. int random_array[64000][10];
  8. int a, b, c;
  9.  
  10. int main( void )
  11. {
  12.     /* Fill the array with random numbers. The C library */
  13.     /* function rand() returns a random number. Use one */
  14.     /* for loop for each array subscript. */
  15.  
  16.     printf("int %d", sizeof(int));
  17.     printf("short %d", sizeof(short));
  18.     printf("long %d", sizeof(long));
  19.     printf("long long %d", sizeof(long long));
  20.     printf("float %d", sizeof(float));
  21.     printf("double %d", sizeof(double));
  22.  
  23.     /* Now display the array elements 10 at a time */
  24.  
  25.     getch();
  26.     return 0;
  27. }   /* end of main() */
  28.  
  29.