In programming environment both .exe and .dll are common.After completion of coding part we usually export it to either .exe or .dll.The basic differences between these two are
1. .exe file is executable file where as .dll is non-executable file.
2..exe file is used to launch application whereas .dll file is dynamic link library which commonly contains functions and procedures that can be used by other programs and is loaded into an application.
3. .exe file runs on its own but .dll can not run on its own and linked or referened to the exe file at run time.
4. one application one .exe file but one application many .dll file.
5..exe file can not be shared with other application but .dll file can be shared with other application.
6..exe file will have main function whereas .dll doesn't have main function.
7.There is only one entry point for .exe file but .dll are having many entry point
8..exe file cannot be reused whereas .dll can be reused.
1. .exe file is executable file where as .dll is non-executable file.
2..exe file is used to launch application whereas .dll file is dynamic link library which commonly contains functions and procedures that can be used by other programs and is loaded into an application.
3. .exe file runs on its own but .dll can not run on its own and linked or referened to the exe file at run time.
4. one application one .exe file but one application many .dll file.
5..exe file can not be shared with other application but .dll file can be shared with other application.
6..exe file will have main function whereas .dll doesn't have main function.
7.There is only one entry point for .exe file but .dll are having many entry point
8..exe file cannot be reused whereas .dll can be reused.
No comments:
Post a Comment