What are the benefits of using macros instead of functions in C? (other than space efficiency)

前端 未结 0 1259
深忆病人
深忆病人 2021-02-07 02:09

First Code:

#include 
 
int area(int a,int b){
        int area1 = a*b;
        return area1;
    }
int main()
{
    
    int l1 =         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题