Declare a pointer to a function that takes a char pointer as argument and returns a void pointer.
No Answer is Posted For this Question
Be the First to Post Answer
How will you execute a stack using a priority queue? (Push and pop should be in O (1)).
What is wrong with this statement? std::auto_ptr ptr(new char[10]);
What is Copy Constructor?
What is placement new?
What is name mangling/name decoration?
What does it mean to declare a member function as virtual in C++?
What are the fundamental features of an object-oriented language?
What is conversion constructor in C++
How will you print a list of all unique words from a string which may contain repeated words?
Identify the errors in the following program. #include <iostream> using namespace std; void main() { int i=5; while(i) { switch(i) { default: case 4: case 5: break; case 1: continue; case 2: case 3: break; } i-; } }
Can we provide one default constructor for our class?
Discuss about iteration statements in C++ .