58 Macro, macros #define ft(a,b) (a)*bint main(){printf("%d",ft(2+1,3+1);return 0;}Output:10Logic: function is replaced with constant expression like this(2+1)*3+1=3*3+1=9+1=10 Share this Share on FacebookTweet on TwitterPlus on Google+ Related Posts351315142336