State the difference between delete and delete[].
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between an external iterator and an internal iterator?
What is meant by const_cast?
Assume an array of structure is in order by studentID field of the record, where student IDs go from 101 to 500. Write the most efficient pseudocode algorithm you can to find the record with a specific studentID if every single student ID from 101 to 500 is used and the array has 400 elements. Write the most efficient pseudocode algorithm you can to find a record with a studentID near the end of the IDs, say in the range from 450 to 500, if not every single student ID in the range of 101 to 500 is used and the array size is only 300
What is c++ and its uses?
1.what is the difference between software & package &application.
What is the main purpose of c++?
What are arrays c++?
the maximum length of a character constant can be a) 2 b) 1 c) 8
Why Pointers are not used in C++?
What do nonglobal variables default to a) auto b) register c) static
What is size of a empty class?
7 Answers Microsoft, Tata Elxsi, Wipro,
Consider a c++ template funtion template<class T> T& Add(T a, T b){return a+b ;} if this function is called as T c = Add("SAM", "SUNG"); what will happen? What is the problem in the template declaration/ How to solve the problem.