Submitted by
EXAMPLE: Overloading of new and delete
C++ new and delete How is dynamic memory management handled in C++? C++ supports the operators new and delete for dynamic memory management. These operators perform both allocation/ deallocation of
Merge Sort What is Merge Sort algorithm? How to implement Merge Sort in C++?
What is Quick Sort algorithm? How to implement Quick Sort in C++? Quick Sort is a sorting algorithm.
C++ Singly Linked Lists What is a singly linked list?
February 6, 2012
Pointer
To create linked list in C/C++ we must have a clear understanding about pointer.
February 4, 2012
Pointers to functions C++ allows operations with pointers to functions.
void pointers The void type of pointer is a special type of pointer.