Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
重複の可能性: C/C++ 行番号
printf がトリガーされた行番号を表示したいですか?
次のようになります。
printf("the line number is: %d",SOME_LIBC_MACRO);
どうやってするの?
__LINE__マクロを使用する
__LINE__
printf("the line number is: %d", __LINE__);
GCCおよびVisual Studioでは、他の定義済みマクロのリストを利用できます。