#cpp
Read more stories on Hashnode
Articles with this tag
Stack: It is a linear data structure that follows the LIFO principle Imagine it as stacking plates on top of each other the plate you will put last...
What is File Handling? File Handling stands for the manipulation of files storing relevant data using a programming language. This enables us to store...
What is Stack? Stack is a data structure that follows LIFO(last in first out) principle, Stack can be visualized as a pile of books, when we pile a...
What are Templates? Templates are the function of C++ that allows us to write generic code. With the help of Templates, we can write our own functions...
DMA(Dynamic Memory Allocation): In C++ programmers can manually perform memory modification on this memory allocation is done on the heap(heap is a...
What is Late binding? Late binding is also k/a Runtime polymorphism. Late binding can be achieved by using a virtual function. Virtual function:...