介绍一个C/C++预编译宏网站
时间:2010-03-18 来源:Meacheal
1 #include<stdio.h>
2
3 int main(void)
4 {
5 puts(__FILE__); //显示当前源码文件名(非编译后可执行文件名)
6 printf("%d\n",__LINE__); //显示当前行号
7 printf("%ld\n",__STDC_VERSION__); //当前编译器版本
8 return 0;
9 } 执行结果: test.c
6
199901
~
网站:http://predef.sourceforge.net/index.php
2
3 int main(void)
4 {
5 puts(__FILE__); //显示当前源码文件名(非编译后可执行文件名)
6 printf("%d\n",__LINE__); //显示当前行号
7 printf("%ld\n",__STDC_VERSION__); //当前编译器版本
8 return 0;
9 } 执行结果: test.c
6
199901
~
网站:http://predef.sourceforge.net/index.php
相关阅读 更多 +