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

  1.  /* Demonstrates the # operator in macro expansion. */
  2.  
  3.  #include <stdio.h>
  4.  
  5.  #define OUT(x) printf(#x " is equal to %d.", x)
  6.  
  7.  main()
  8.  {
  9.     int value = 123;
  10.  
  11.     OUT(value);
  12.  }
  13.