the all I know about DLL is th8 it stands for Dynamic Link Library and nothing else can anybody tell me what is it? It's purpose and how to make and then use it?
Yes, Dll is dynamic link library..when u write a piece of code then some library functions are used ..those library function can be linked to your code either at the compile time or at the run time...In C or C++ u include header files rite?? Those header file functions are linked to your code at compile time...but DLL consists of fuctions which are only used when a piece of code runs and needs those specific function at particular instant of execution...