top of page
All of us do not have equal talent. But, all of us have an equal opportunity to develop our talents.
-A.P.J Abdul Kalam
Search


Associative container in c++
Associative containers implement sorted data structures that can be quickly searched. Set: Collection of unique keys, sorted by keys....
Apr 4, 20214 min read


STL in C++
The Standard Template Library (STL) is a set of C++ template classes to provide common programming data structures and functions such as...
Apr 2, 20212 min read


Multithreading in C++::Future and promise
Promise: promise is a class template and its object promises to set the value in future. Each std::promise object has an associated...
Mar 30, 20212 min read


Smart pointer in C++
what is smart pointer? Smart pointer is wrapper class over a pointer with operator like * and -> overloaded. The object of smart pointer...
Mar 25, 20212 min read


Segmentation fault in C++.
Segmentation fault is a specific kind of error caused by accessing memory that “does not belong to you. Example of Segmentation fault....
Mar 21, 20212 min read


Pointer in c++
what is pointer? Pointer is a variable which store address of another variable. Use of pointer? Pointers are very useful for another type...
Mar 21, 20213 min read


Memory Management in c++
What is memory? Memory is used to store the data and instruction. What is memory Management? Memory management is a process of managing...
Mar 18, 20215 min read


Basic Introduction of Makefile-set1
What is makefile? "makefile" is a file which tell to 'make' utility what to do. Most often, the makefile tells 'make' utility how to...
Mar 16, 20212 min read


Library in c++
What is library: A library is a package of code that is meant to be reused by many programs. There are two types of libraries: 1) static...
Mar 15, 20214 min read


Compilation Process in C++
What is a compilation? Compilation is a process of converting the source code into the object code. It is done by help of compiler. What...
Mar 14, 20215 min read


why size of empty class object contains 1 byte in c++?
Compiler allocate 1 byte of memory of empty class object for unique address identification. So, if a class have multiple objects they can...
Mar 10, 20211 min read


difference between Shallow copy and deep copy in C++
Shallow copy: Shallow copy means , new object created by simply copying the data of all variable of the original object. Shallow copy...
Mar 10, 20212 min read


write a program to reverse the string in same position
Input:Hello i am in bangalore output:olleH i ma ni erolagnab Input:Hello i am in bangalore output:bangalore in am i Hello // Example...
Mar 10, 20211 min read


Why C++ is powerful language
C++ is a powerful general-purpose programming language. It can be used to develop operating systems, browsers, games, and so on. C++...
Mar 8, 20211 min read
bottom of page