Answer Posted / kriba
Try to avoid Debugging symbols which will be normally
avoided in the Release build of the application.
Try to use Explicit linking of libraries instead of
implicit linking which may also help you in versioning of
your application.
In VC shared MFC application is a classical example of
runtime bonding.
Is This Answer Correct ? | 9 Yes | 2 No |
Post New Answer View All Answers
Why is it called c++?
write a c++ program to create class student having datamember name,Roll_no,age,and branch intilcization all the member using constructor print the all the details on the screen.
What is the type of this pointer in c++?
Evaluate !(1&&1||1&&0) a) Error b) False c) True
If you want to share several functions or variables in several files maitaining the consistency how would you share it?
What is std :: flush?
What is the correct syntax for inheritance a) class aclass : public superclass b) class aclass inherit superclass c) class aclass <-superclass
What are the various operations performed on stack?
What is a class definition?
How can you tell what shell you are running on unix system?
Can comments be longer than one line?
Can a list of string be stored within a two dimensional array?
Explain virtual class?
What is virtual destructor? What is its use?
What is the use of lambda in c++?