Talk:?:

From Wikipedia, the free encyclopedia

I just have to get this off my chest: the MAX(a,b) code here,

#define MAX(a,b) (((a)>(b))? (a): (b))

causes three evaluations instead of two, so it is inefficient and should not be used. Melchoir 10:19, 25 February 2006 (UTC)