home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / tyc / list15_2.c < prev    next >
C/C++ Source or Header  |  1993-10-16  |  322b  |  13 lines

  1.  /* Demonstrates the sizes of multidimensional array elements. */
  2.  
  3.  #include <stdio.h>
  4. #
  5.  int multi[2][4];
  6.  
  7.  main()
  8.  {
  9.      printf("\nThe size of multi = %u", sizeof(multi));
  10.       printf("\nThe size of multi[0] = %u", sizeof(multi[0]));
  11.       printf("\nThe size of multi[0][0] = %u", sizeof(multi[0][0]));
  12.  }
  13.