여기서 우리는 __func__ C가 무엇인지 볼 것입니다.
기본적으로 __func__ 또는 __FUNCTION__(일부 이전 버전의 C 및 C++에서는 __func__를 지원함). 이 매크로는 현재 함수의 이름을 가져오는 데 사용됩니다.
예시
#include<stdio.h> void TestFunction(){ printf("Output of __func__ is: %s\n", __func__ ); } main() { printf("Output of __func__ is: %s\n", __func__ ); TestFunction(); }
출력
Output of __func__ is: main Output of __func__ is: TestFunction