Linux之C标准预定义宏 #include <stdio.h>#include <errno.h> int main() {printf( "所在文件: %s \n", __FILE__ );printf( "所在日期: %s \n", __DATE__ );printf( "所在时间: ……