/*注意,FILE前面是兩條下劃線,不是一條*/
 printf(
"%s\n", __FILE__);
 printf(
"%d\n", __LINE__);
此外還有輸出日期,時間的
 printf("%s\n", __DATE__);
 printf(
"%d\n", __TIME__);