Quick Revision: Functions in c++
Hi, guys this is short but very smart understanding for functions in c++ programming language. You can learn this in very
Read moreHi, guys this is short but very smart understanding for functions in c++ programming language. You can learn this in very
Read moreC++: C++ is a programming language. It was first seen in the year 1980’s.C++ is an object oriented programming language
Read moreWe cannot use the virtual keyword with constructors, but destructors can and often must be virtual. The constructor has the
Read moreWhat is polymorphism? Object oriented programming language supports the concept of polymorphism which is characterized by the phrase “one interface
Read moreCLASS Class is made of data and functions. OBJECTS Objects are basic run time entity in object oriented system. They
Read moreDynamic memory allocation:- void *mallc(size_t size); void *calloc(size_t n, size_t size); void *realloc(void *ptr, size_t size); void *alloca(size_t size); void
Read moreNamespace:- There is a team development in C++ for creating a single application. Due to this team development different team
Read moreDynamic memory allocation:- In C, we can allocate dynamic memory by using malloc, calloc ande realloc library functions. All the
Read moreVirtual Destructor:- As like a normal function we can create a destructor as virtual. If the class contains at least
Read moreOperator overloading:- Operator overloading is a syntactic sugar. It is the type of compile time polymorphism. Overloaded operators are used
Read more