#newbie
Read more stories on Hashnode
Articles with this tag
Wrapper Class: Wrapper class essentially allows the user to wrap the primitive data into an object this means that the user can use those primitive...
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:...