What is a class template?


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

Post New Answer

More C++ General Interview Questions

What is a dangling pointer?

3 Answers   Glenwood,


What data structure is fastest, on average, for retrieving data: a) Binary Tree b) Hash Table c) Stack

0 Answers  


What is the difference between static global and global ?

2 Answers   CA,


Can create new c++ operators?

0 Answers  


Is c++ vector dynamic?

0 Answers  






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

0 Answers  


To what does “event-driven” refer?

0 Answers  


How do we implement inheritance in c++?

0 Answers  


Should the member functions which are made public in the base class be hidden?

0 Answers  


string somestring ; Which of the following choices will convert a standard C++ string object "somestring" to a C string? a) Copy.somestring () ; b) somestring.c_str () c) &somestring [1] d) std::cstring (somestring) e) (char *) somestring

1 Answers   Quark,


Difference between inline functions and macros?

0 Answers  


Will the inline function be compiled as the inline function always? Justify.

1 Answers  


Categories