Software Engineering Ways to convert double to string in C++ We have covered different ways to convert double to string in C++ which includes using std::to_string function, ostringstream, sprintf and boost's lexical_cast.
Software Engineering delete vs delete[] vs free in C++ In this article, we will explore the difference between delete, delete[], free keywords of C++ which are often confused with each other and sometimes wrongly used leading to the errors in one's program.
Software Engineering Delete an array in C In this article, we have explored how to delete or deallocate an array in C. By deleting an array, we mean to deallocate the memory that was assigned to the array so that it can be reused.