GCC-2——杂项汇总
摘要:
1. __builtin_constant_p 它是GCC的内建函数,用于判断一个值是否为编译时常数,如果参数是常数,函数返回 1,否则返回 0。 #include <stdio.h> #define MAX 10 //built in constant int global = 10; //non 阅读全文
posted @ 2022-11-26 23:19 Hello-World3 阅读(73) 评论(0) 推荐(0) 编辑