What is compiler, linker, loader?

后端 未结 14 992
离开以前
离开以前 2020-12-07 06:48

I wanted to know in depth meaning and working of compiler, linker and loader. With reference to any language preferably c++.

14条回答
  •  醉话见心
    2020-12-07 07:22

    • Compiler : Which convert Human understandable format into machine understandable format
    • Linker : Which convert machine understandable format into Operating system understandable format
    • Loader : is entity which actually load and runs the program into RAM

    Linker & Interpreter are mutually exclusive Interpreter getting code line by line and execute line by line.

提交回复
热议问题