This question already has answers here:
Closed 4 years ago.
Programmatic way to get variable name in C?
(10个答案)
int findme()
{

    int input[120];
    int make00;
}

我想在程序中找到make00,找到后我想打印包含这个变量的函数名。我该怎么做PS:我在c(linux)中是noob

最佳答案

你有没有考虑过老好人?对于你的需求,C/C++语法可以非常简化。我认为这是你最好的选择。

关于c - 如何查找函数名称并将其打印在c中声明了变量的位置,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28911771/

10-13 06:40