/* Demonstrates the # operator in macro expansion. */ #include #define OUT(x) printf(#x " is equal to %d.", x) main() { int value = 123; OUT(value); return(0); }