What is a singleton class c++?


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

Post New Answer

More C++ General Interview Questions

How do you differentiate between overloading the prefix and postfix increments?

0 Answers  


Array base access faster or pointer base access is faster?

0 Answers  


What are the differences between a struct in C and in C++?

8 Answers   Amazon, Wipro,


How many storage classes are available in C++?

1 Answers  


class Foo { const int x; protected: Foo(int f); ~Foo(); }; Foo f; Referring to the sample code above, why will the class declaration not compile? a) The variable x is const. b) The destructor is protected. c) The destructor is not public. d) The constructor is protected. e) There is no default constructor.

5 Answers   Quark,


What does return 0 do in c++?

0 Answers  


What is c++ iterator?

0 Answers  


What is meant by reference variable in C++?

1 Answers  


Write a c++ code that will calculate the roots of a quadratic equation a2+ bx+c=0 Hint: d = sqrt (b2-4ac), and the roots are: x1 = (€“b + d)/2a and x2 = (€“b €“ d)/2a (use sqrt function from cmath.h )?

0 Answers   Maxobiz,


How many bit combinations are there in a byte?

13 Answers   Intel, Microsoft,


How to detect memory leaks in c++

1 Answers   Mphasis,


What is using namespace std in c++?

0 Answers  


Categories