Why cstdlib is used in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of 'this' pointer?
How do I make turbo c++ full screen?
Write about the retrieval of n number of objects during the process of delete[]p?
What is the best sorting algorithm, when there is a large amount of data, that cannot be fit in the main memory. ?
Are there any special rules about inlining?
sir i want to study the c++ course but ino what is the qualification and the study methode please reply more details in c++
i want to know how to copy arrary without using any method or function. I have tried the below using System; class e4 { static void Main(string[] args) { int a,b; int[ ] m= new int[5]; int[ ] n= new int[5]; for(a=0;a<=4;a++) { Console.WriteLine("enter any value"); m[a]=Convert.ToInt32(Console.ReadLine()); m[a]=n[a]; } for(b=0;b<=4;b++) { Console.WriteLine(n[b]); } } } but it will give wrong result can anyone solve this problem
class A { public: void f(); protected: A() {} A(const A&){} }; Examine the class declaration shown above. Why are the default and copy constructors declared as protected? 1. To ensure that A cannot be created via new by a more derived class 2. To ensure that A cannot be copied 3. To ensure that A cannot be used as a base class except when public inheritance has been used 4. To ensure that A cannot be created/copied outside the inheritance chain 5. To ensure that A cannot be instantiated as a static variable
Can user-defined object be declared as static data member of another class?
how is returning structurs from functions?Show an eg?
which operator is used for performing an exponential operation a) > b) ^ c) none
pls help.. paper bills.. 1000, 500, 100, 50, 20, 10, 5, 1.. create a program that will count all the paper bills in the number being input.. example: enter a number: 3886 there is/are: 3 ->1000 1 ->500 3 ->100 1 ->50 1 ->20 1 ->10 1 ->5 1 ->1 example2: enter a number: 728 there is/are: 0 ->1000 1 ->500 2 ->100 0 ->50 1 ->20 0 ->10 1 ->5 3 ->1