Answered Difference between DLL and EXE ?

  • Thursday, May 10, 2012 11:01 AM
     
     
    What is the difference between DLL and EXE file ?

    Rupesh

All Replies

  • Monday, May 14, 2012 10:40 AM
     
     Answered

    DLL stands for Dynamic Link Library and exe means executable. An exe file on a pc can run by itself but dll file cannot be run by itself. A dll file is always "used" by an exe.

    In programmer's term an exe has a "Main" function which acts as the entry point to the program and a dll lacks the Main function.

    -Regards

    Please mark this as answer if it helps you.
    • Edited by Kalnemi Monday, May 14, 2012 10:41 AM
    • Proposed As Answer by Kalnemi Monday, May 14, 2012 10:41 AM
    • Marked As Answer by RupeshSahu Wednesday, May 16, 2012 9:45 AM
    •