Posts by Manan Gupta

Author Biographical Info: Not available

Memory Allocation in static data member in C++

By Manan Gupta

In the language C++, we can create various data members using a class that is applicable to each object we create. The data members are initialized to their default value once an o.... Read More

Convert a Singly Linked List to an Array in C++

By Manan Gupta

The task is to convert a Singly Linked List to an Array in C++. A simple example to explain the task can be- input: 10->20->50->40->35->NULL output: 10 20 50 40 35 T.... Read More