What is the purpose of template?
No Answer is Posted For this Question
Be the First to Post Answer
How the virtual functions maintain the call up?
How delete [] is different from delete?
How size of a class can be calulated?
How do you flush std cout?
Assume studentNames and studentIDs are two parallel arrays of size N that hold student data. Write a pseudocode algorithm that sorts studentIDs array in ascending ID number order such that the two arrays remain parallel.
What is the iunknown interface?
What is scope in c++ with example?
Write a program in C++ for Fibonacci series
0 Answers Axtria, ITC Indian Tobacco Company,
Of the numbers 12 23 9 28 which would be at the top of a properly implemented maxheap a) 28 b) 9 c) Any of them could be
What are structs in c++?
Which should be more useful: the protected and public virtuals?
I was a c++ code and was asked to find out the bug in that. The bug was that he declared an object locally in a function and tried to return the pointer to that object. Since the object is local to the function, it no more exists after returning from the function. The pointer, therefore, is invalid outside.