1

如果我有那个 C 代码:

int main()
{
    int a = 2;
    int b = 3;

    int c = a + b;

    return c;
}

如何为上面的示例生成:

  • 可重定位目标码
  • 绝对目标码

在 Linux (Ubuntu) 和 GNU gcc 编译器中?

4

0 回答 0