Re: Macros
- Posted by =?iso-8859-2?B?qWtvZGE=?= <tone.skoda at SIOL.NET> May 07, 2000
- 463 views
From: Bernie Ryan> > #define MyMacroName(ExprA) ( (ExprA) * 20 ) > > Now in my progam I use this: > > answer = MyMacroName(7 + 10) > answer = MyMacroName( 487 + 10/523 ) > > Then the compiler will put this in my program. > > answer = 7 + 10 * 20 wouldnt that be: answer = (7 + 10) * 20 ?