如何在ubuntu中打印c程序的符号table?

How to print the symbol table of a c program in ubuntu?

编译 C 程序时,compiler/linker 将生成一个符号 table。我们如何打印该符号 table 以及它将在终端中存储什么值?

您可以使用 nm(1):

查看已编译程序或目标文件的符号
nm a.out

显示 a.out 中的所有符号。