2
Reply

What is difference between .dll and .exe files?

Manish Kumar

Manish Kumar

12y
2.9k
0
Reply

    EXE ASSEMBLY RUNS OUT-PROCESS WHEREAS DLL RUNS IN-PROCESS. EXE HAS MAIN AS STATING POINT WHEREAS DLL DOESN'T HAVE MAIN FOR EXECUTION.

    .dll files are library files which are used to run the exe files. By default we cant run library files, we need Exe files (executable) to start our application. But exe files need dlls support to run. DLL - dynamic link library