home *** CD-ROM | disk | FTP | other *** search
/ C by Discovery (4th Edition) / C_By_Discovery_4th_Edition.tar / C_By_Discovery_4th_Edition / _DISK_ / ch3 / la9.c < prev    next >
C/C++ Source or Header  |  2005-06-16  |  267b  |  15 lines

  1. /*        la9.c     */
  2.  
  3. /* Include Files */
  4. #include <stdio.h>
  5.  
  6. int main( void )
  7. {
  8.      int j = 3;
  9.  
  10.      printf( "The sizeof( j++ ) is %d\n",
  11.                                  sizeof( j++ ) );
  12.      printf( "The value of j is %d\n", j );
  13.      return 0;
  14. }
  15.