Is atoi safe?
No Answer is Posted For this Question
Be the First to Post Answer
If there are 1 to 100 Numbers in array of 101 elements. Which is the easy way to find repeated number?
What is the best c++ ide?
What is size_type?
Which software is used for c++ programming?
Which is better c++ or java?
What are the various situations where a copy constructor is invoked?
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
Am pass the 10000 records to target in target I will take commit interval 15000 when I was stop the work flow what will happened
What is the use of namespace std in C++?
What data structure is fastest, on average, for retrieving data: a) Binary Tree b) Hash Table c) Stack
What does return 0 do in c++?
Show the application of a dynamic array with the help of an example.