What are manipulators in c++ with example?
No Answer is Posted For this Question
Be the First to Post Answer
What is switch case in c++ syntax?
How would you find out if a linked-list is a cycle or not?
Write a program to show polymorphism in C++?
Write a program that will count the number of digits in an input integer up to value MAX_VALUE (2147483647). Thus, for an input of 5837 the output should be 4 digits Make sure that your program works for the numbers 0, 1, and 10. For the number 0, the output should be 1 digit
Differentiate between declaration and definition.
Which is the best c++ compiler for beginners?
What is #include iostream h in c++?
Is the declaration of a class its interface or its implementation?
Write about a nested class and mention its use?
iam a fresher to Qt(GUI a c++ based framework software). i need to develop the basic applications on designer by drag and dropping mechanism...so pls send me the procedure to design applications?
What sorting algorithm does c++ use?
class X { private: int a; protected: X(){cout<<"X constructor was called"<<endl;} ~X(){cout<<"X destructor was called"<<endl} }; Referring to the code above, which one of the following statements regarding "X" is TRUE? a) X is an abstract class. b) Only subclasses of X may create X objects. c) Instances of X cannot be created. d) X objects can only be created using the default copy constructor. e) Only friends can create instances of X objects.