码迷,mamicode.com
首页 > 其他好文 > 详细

类函数宏

时间:2017-09-25 16:40:25      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:es2017   style   fine   span   void   png   logs   return   函数   

/*
 ============================================================================
 Name        : kinson.c
 Author      : 
 Version     :
 Copyright   : Your copyright notice
 Description : Hello World in C, Ansi-style
 ============================================================================
 */

#include <stdio.h>
#include <stdlib.h>

#define ok(x) x*x
#define okk(x) (x)*(x)

int main(void)
{
    int a = 2;
    int b = 3;
    int c = ok(a+b);//6+5=11
    //int c = a+b*a+b;
    int d = okk(a+b);//
    //int d = (a+b)*(a+b)
    printf("ok(a+b)= a+b*a+b=%d\n",c);
    printf("okk(a+b)= (a+b)*(a+b)=%d\n",d);//5*5=25
    return EXIT_SUCCESS;
}

 技术分享

 

类函数宏

标签:es2017   style   fine   span   void   png   logs   return   函数   

原文地址:http://www.cnblogs.com/kinson/p/7592540.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!