Compilers & Linkers

  1. STATIC VS DYNAMIC

  • Static: “fixed/doesnt change”. In linking the library code is copied once into your project and at build time it stays there.

  • Dynamix: “moves/changes”. in linking the library code is kept outside your program and its loaded in at runtimr when your program runs.

DLL