prev up next   top/contents search

comp.lang.c FAQ list · Question 10.22

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.


prev up next   contents search
about this FAQ list   about eskimo   search   feedback   copyright

Hosted by Eskimo North