What is the difference between static link library and
dynamic link library?

Answer Posted / achal ubbott

Above answers are correct. In case of Dynamic Library your
executable will look up for the code at run time. E.g. when
running some exe it looks for help from some .dll files
provided by windows operating system. So we call this
dynamic linking.

Is This Answer Correct ?    11 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

When should we use container classes instead of arrays?

578


What is c++ library?

593


What is the difference between c++ and turbo c++?

584


Define a nested class. Explain how it can be useful.

630


What is c++ hiding?

616






What are the various compound assignment operators in c++?

546


Why is that unsafe to deal locate the memory using free( ) if it has been allocated using new?

622


Give example of a pure virtual function in c++?

582


Can we use clrscr in c++?

526


Why do we learn c++?

525


What is the full form nasa?

595


What is the use of vtable?

664


can any one help to find a specific string between html tags which is changed to a sting.. weather.html looks (for location) is somewhere #include #include #include using namespace std; string find_field(string myPage,string); int main (void) { string page, line, location, temperature; ifstream inputFile("weather.xml"); while(getline(inputFile, line)) { page.append(line); line.erase(); } // Now page is a string that contains the whole xml page // Here you need to write something that finds and // extracts location and temperature from the XML // data in the string page and stores them in // the strings location and temperature respectively location=find_field(page,"location"); temperature=find_field(page,"temp_c"); cout << "Location: "<

1639


If dog is a friend of boy, is boy a friend of dog?

567


Explain public, protected, private in c++?

563