Re: Macros



Frederick Gotham wrote:
Harry:

# define prod(a,b)=a*b


#define PROD(a,b) ((a)*(b))

This macro will fail if either "a" or "b" contain a comma.

How will it fail?

.