Author: yogesh narayan ojha

0

C++ – Virtual Mechanism in C++

Hello Friends, Today, in this article we will discuss, how Virtual mechanism is being handled in compiler level . The virtual mechanism mostly used to accomplish the dynamic polymorphism, which we discusses in one...

1

C++ – Automatic type conversion for user defined data types

Hello Friends, Today In this article we will discuss about the /automatic Type Conversation in case of user defined types. We have seen compiler does the type conversion in case of built in data...

1

C++ – Dynamic Polymorphism

Hello Friends, Today, in this article we will mostly discuss about Dynamic Polymorphism and the difference between Static Polymorphism and Dynamic Polymorphism . Static Polymorphism : If function call binding is performed at compile time. This is also known...

1

C++ – Static Polymorphism

Polymorphism: In programming language we can say : Different functions can have the same name and if programmer call a function, which one to be executed is decided based on the arguments or the type...

0

C++ – Different between Abstract Class and Interface

In this article we will discuss about the difference between Abstract class and Interface. Abstract Class: An abstract class is, conceptually, a class which contain at least one pure virtual function. It can’t be...

0

C++ – Sorting a list in a random order

In this article, we will discuss how to sort a list of objects in random order, where the order is defined by the user.