STL (140)
OOPS (873)
C++ General (2409) Generally, in all C++ programs, texts are in white colour. Can we change the colour of the text(either input or output or both)? If so, help me out.
1 3995What 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\"; } };
2 5443sir there is some problem with nokia5130c-2,when we are trying to upload movies from net then there is a error occurred"FORMAT NOT SUPPORTED" bt its all ready in 3gp format.please tell me what i do now?
2 5753How to write a function that goes through an array of characters and eliminates any elements that are not letters (Legal letters can be either in an uppercase or a lowercase format.) The function removeNonLetters should return the new effective size of the array as the result.
2 5297
What are virtual constructors/destructors?
Is data hiding and abstraction same?
How do you find out if a linked-list has an end? (I.e. The list is not a cycle)
Explain the benefits of proper inheritance.
What is c++ prototype?
What is protected inheritance?
What is else syntax in c++?
How do I tokenize a string in c++?
What does namespace mean in c++?
What is a memory leak c++?
totoo po ba ang manga aliens!
Explain the isa and hasa class relationships.
Is sorted c++?
write a code for this:trailer recordId contains a value other than 99, then the file must error with the reason ‘Invalid RECORD_ID’(User Defined Exception).
What is the difference between *p++ and (*p)++ ?