Q: Why is the macro
#define TRACE(n) printf("TRACE: %d\n", n)
giving me the warning ``macro replacement within a string literal''?
It seems to be expanding
TRACE(count);as
printf("TRACE: %d\count", count);
A: See question 11.18.
Hosted by Eskimo North