home *** CD-ROM | disk | FTP | other *** search
/ Sams Teach Yourself C in 21 Days (6th Edition) / STYC216E.ISO / mac / Examples / Day21 / preproc.c < prev    next >
C/C++ Source or Header  |  2002-08-11  |  206b  |  14 lines

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