c++ 打印当前函数名

import <iostream>;

void funcHello() {
  printf("func name is %s\n", __func__);
}

int main (int argc, char *argv[]) {
  funcHello();
  return 0;
}


main.exe: main.cpp
    g++ -std=c++20 -fmodules-ts -xc++-system-header iostream
    g++ main.cpp -o main.exe -std=c++20 -fmodules-ts
文章目录