home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / c / other / learn / sizeof.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-10-07  |  252 b   |  13 lines

  1. /* SIZEOF.C: Demonstrate sizeof operator. */
  2.  
  3. #include <stdio.h>
  4.  
  5. char string[] = "Hello, world";
  6.  
  7. main()
  8. {
  9.    int val;
  10.    printf( "An int is %d bytes long\n", sizeof( int ) );
  11.    printf( "The string is %d bytes long\n", sizeof string );
  12. }
  13.