Which coding certification is best?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between mutex and binary semaphore?
which of the following is not an secondary constant a) array b) real c) union
What is the output of this prog. ? struct A { A(){ cout << \"A\"; } }; struct B { B(){ cout << \"B\"; } }; struct C { C(){ cout << \"C\"; } }; struct D { D(){ cout << \"D\"; } }; struct E : D { E(){ cout << \"E\"; } }; struct F : A, B { C c; D d; E e; F() : B(), A(),d(),c(),e() { cout << \"F\"; } };
List the issue that the auto_ptr object handles?
Why null pointer is used?
When to use “const” reference arguments in a function?
Can we make any program in c++ without using any header file and what is the shortest program in c++.
Which programming language is best?
How does c++ structure differ from c++ class?
What does the following code do: int c=0; cout< a) Undefined *Updated* b) 01 c) 00
In C++ cout is: a) object b) class c) something else
11 Answers Infosys, Lehman Brothers,
How a new element can be added or pushed in a stack?