2

可能重复:
C/C++ 行号

我想显示触发 printf 的行号?

它可能看起来像这样:

printf("the line number is: %d",SOME_LIBC_MACRO);

怎么做?

4

1 回答 1

12

使用__LINE__

printf("the line number is: %d", __LINE__);

其他预定义宏的列表可用于GCCVisual Studio

于 2012-12-20T15:50:26.107 回答