I want to know the exact difference between the dll and exe file.
|
|
EXE:
DLL:
For More Details: http://www.c-sharpcorner.com/Interviews/Answer/Answers.aspxQuestionId=1431&MajorCategoryId=1&MinorCategoryId=1 http://wiki.answers.com/Q/What_is_the_difference_between_an_EXE_and_a_DLL Reference: http://www.dotnetspider.com/forum/34260-What-difference-between-dll-exe.aspx |
|||||||||||||
|
|
I don't know why everybody is answering this question in context of .NET. The question was a general one and didn't mention .NET anywhere. Well, the major differences are: EXE
DLL
The file format of DLL and exe is essentially the same. Windows recognizes the difference between DLL and EXE through PE Header in the file. For details of PE Header, You can have a look at this Article on MSDN |
|||||||||
|
|
The difference is that an EXE has an entry point, a "main" method that will run on execution. The code within a DLL needs to be called from another application. |
|||
|
This answer was a little more detailed than I thought but read it through. DLL: For example: This "button" library is required by EXEcutables to run, and without it they will not run because they don't know how to create the button, only how to talk to it. Likewise, a DLL cannot be executed - run, because it's only a part of the program but doesn't have the information required to create a "process". EXE: hope this helps.... |
|||
|
|
|
There are a few more differences regarding the structure you could mention.
You can read more on this topic @ MSDN. |
||||
|
|
|
An exe is an executible program whereas A DLL is a file that can be loaded and executed by programs dynamically. |
|||||||
|
|
An EXE is visible to the system as a regular Win32 executable. Its entry point refers to a small loader which initializes the .NET runtime and tells it to load and execute the assembly contained in the EXE. A DLL is visible to the system as a Win32 DLL but most likely without any entry points. The .NET runtime stores information about the contained assembly in its own header.
|
|||
|
|
|
Two things: the extension and the header flag stored in the file. Both files are PE files. Both contain the exact same layout. A DLL is a library and therefore can not be executed. If you try to run it you'll get an error about a missing entry point. An EXE is a program that can be executed. It has an entry point. A flag inside the PE header indicates which file type it is (irrelevant of file extension). The PE header has a field where the entry point for the program resides. In DLLs it isn't used (or at least not as an entry point). One minor difference is that in most cases DLLs have an export section where symbols are exported. EXEs should never have an export section since they aren't libraries but nothing prevents that from happening. The Win32 loader doesn't care either way. Other than that they are identical. So, in summary, EXEs are executable programs while DLLs are libraries loaded into a process and contain some sort of useful functionality like security, database access or something. |
|||
|
|
The .exe is the program. The .dll is a library that a .exe (or another .dll) may call into. What sakthivignesh says can be true in that one .exe can use another as if it were a library, and this is done (for example) with some COM components. In this case, the "slave" .exe is a separate program (strictly speaking, a separate process - perhaps running on a separate machine), but one that accepts and handles requests from other programs/components/whatever. However, if you just pick a random .exe and .dll from a folder in your Program Files, odds are that COM isn't relevant - they are just a program and its dynamically-linked libraries. Using Win32 APIs, a program can load and use a DLL using the LoadLibrary and GetProcAddress API functions, IIRC. There were similar functions in Win16. COM is in many ways an evolution of the DLL idea, originally concieved as the basis for OLE2, whereas .NET is the descendant of COM. DLLs have been around since Windows 1, IIRC. They were originally a way of sharing binary code (particularly system APIs) between multiple running programs in order to minimise memory use. |
|||
|
|
|
The major exact difference between DLL and EXE that DLL hasn't got an entry point and EXE does. If you are familiar with c++ you can see that build EXE has main() entry function and DLL doesn't :) |
|||
|