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

  1.  /* The assert() macro. */
  2.  
  3.  #include <stdio.h>
  4.  #include <assert.h>
  5.  
  6.  main()
  7.  {
  8.      int x;
  9.  
  10.      printf("\nEnter an integer value: ");
  11.      scanf("%d", &x);
  12.  
  13.      assert(x);
  14.  
  15.      printf("You entered %d.", x);
  16.  }
  17.