What is a pdb file?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

What is 'Copy Constructor' and when it is called?

1 Answers  


How static variables and local variablesare similar and dissimilar?

0 Answers  


What do you mean by delegate? Can a user retain delegates?

0 Answers  


List out some of the OODBMS available?

1 Answers  


How can you quickly find the number of elements stored in a dynamic array? Why is it difficult to store linked list in an array?

0 Answers  






Can we make copy constructor private in c++?

0 Answers  


Explain explicit container.

0 Answers  


What is searching? Explain linear and binary search.

0 Answers  


What is null and void pointer?

0 Answers  


What is the best way to take screenshots of a window with c++ in windows?

0 Answers  


Evaluate: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); a) 10 b) 11 c) 1

4 Answers   Quark,


What is the use of endl in c++ give an example?

0 Answers  


Categories