Click here to Skip to main content
15,921,577 members
Please Sign up or sign in to vote.
4.00/5 (2 votes)
See more:
what is the difference between .exe files and .dll files?
Posted
Updated 30-Jun-11 3:48am
v2

An exe is a program or an application, a DLL contains functions that programs or applications can use.

I'm sure someone can provide something more comprehensive but I believe that is it basically.

See this for more information: http://en.wikipedia.org/wiki/Dynamic-link_library[^]
 
Share this answer
 
Comments
Pete O'Hanlon 30-Jun-11 8:51am    
Yup, that about covers it.
LittleYellowBird 30-Jun-11 8:54am    
Ta :)
Pete O'Hanlon 30-Jun-11 9:05am    
That's why I voted 5;)
Nagy Vilmos 30-Jun-11 9:24am    
Why are you thanking yourself ;)
LittleYellowBird 30-Jun-11 9:37am    
Lunacy ;)
At the most basic level, an exe is an executable file that can be run, whereas a DLL is a library that needs to have something external to it call it's functions. An executable has a well defined start point (typically known as Main) that is responsible for setting up the calls to the rest of the program, and triggering processing functionality. A DLL does not have this start point.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900