C/C++
template.asc
Associated article: Beyond C++ Templates
Tags: C/C++
_Beyond C++ Templates_ by Fred Wild Example 1: (a) #define max(a,b) (((a) > (b)) ? (a) : (b)) (b) int larger ; larger = max(item1, item2) ; /* before preprocessing */ (c) int larger ; larger = (((item1) > (item2)) ? (item1) : (item2)); /* after preprocessing */ Example 2: (a) #define ...


