摘要: http://acm.hdu.edu.cn/showproblem.php?pid=3350Problem DescriptionHave you used #define in C/C++ code like the code below?#include <stdio.h> #define MAX(a , b) ((a) > (b) ? (a) : (b)) int main() { printf("%d\n" , MAX(2 + 3 , 4)); return 0; }Run the code and get an output: 5, right? 阅读全文
posted @ 2012-12-30 16:20 crazy_apple 阅读(271) 评论(0) 推荐(0) 编辑