__LINE__, 行号
__FUNCTION__ 函數
void
func()
{
printf
(
"source line %d, in function %s"
,__LINE__,__FUNCTION__);
}
int
main()
{
func();
return
0;
}