C++ Inheritance programs/examples

Inheritance is a feature of object oriented programming system, by which a class can inherit the commonly used properties/features of another classes. In this section you will get solved c++ programs using inheritance: simple inheritance, multiple inheritance, multilevel inheritance, hybrid inheritance, hierarchical inheritance.

We are providing here set of programs on privately and publicly inheritance.

List of C++ Inheritance programs

  1. C++ program to demonstrate example of simple inheritance.
  2. C++ program to demonstrate example of private simple inheritance.
  3. C++ program to read and print student's information using two classes and simple inheritance.
  4. C++ program to demonstrate example of multilevel inheritance.
  5. C++ program to read and print employee information using multiple inheritance.
  6. C++ program to demonstrate example of multiple inheritance.
  7. C++ program to demonstrate example of hierarchical inheritance to get square and cube of a number.
  8. C++ program to read and print employee information with department and pf information using hierarchical inheritance.


List of most popular & searched C++ programs

Showing latest posts on top

  1. C++ Program to print right angled (Right oriented) pyramid of numbers.
    In this program, we are going to learn how to print numbered pyramids of numbers (which is right angled and right oriented)? This post contains solved program with output and explanation.
  2. C++ Program to print right angled pyramid of numbers.
    In this program, we are going to learn how to print numbered pyramids of numbers? This post contains solved program with output and explanation.
  3. C++ program to keep calculate the sum of the digits of a number until the number is a single digit.
    In this program, we are going to implement logic to find sum of digits until the number is a single digits in C++ programming language.
  4. How to skip some of the array elements in C++?
    Learn: How to skip some of the array elements using C++ program? Here, using an example - we going to understand the concept of skipping some of the elements in C++.
  5. Example of declaring and printing different constants in C++.
    Declaring and printing different constant in C++: Here, we will learn to declare and print the value of different type of constants using C++ program.
  6. C++ program to demonstrate example of delay() function.
    dos.h delay() function in C++: Here, we will learn about the delay() function of dos.h header file in C++ through a simple example/program.
  7. C++ program to print your name randomly on the screen with colored text.
    Print your name on output screen randomly with colored text and background color using C++ program: Here you will learn some of the in-built functions that are using to print randomly, colored, print text of specified position etc.

  8. Sieve of Eratosthenes to find prime numbers.
    Learn: What is Sieve of Eratosthenes? And how to find prime numbers using this algorithm? This article contain solved program in C++ based on Sieve of Eratosthenes algorithm.
  9. C++ program to print the maximum possible time using six of nine given single digits.
    The Objective is to form the maximum possible time (in HH:MM:SS and 12 hour format) using any six of nine given single digits (not necessarily distinct).
  10. Find last index of a character in a string using C++ program.
    In this post, we are going to learn: how we can get the last index of a character in a string using C/C++ program using simple method?
  11. C++ program to get week day from given date.
    Learn: How to get weekday from a given date in C++ program? Here I am writing a C++ code by using you can able to access the weekday of given date.
  12. Set date and time in Linux Operating System using C++ program.
    Learn: How to define/set date and time in Linux Operating System using C++ program? Here we are using system() function to set date time.
  13. Reading date and time from Linux operating system using C++ program.
    Learn: How to get current date and time from Linux Operating System using C++ program? This program will read date, time from Operating system and print on the standard output device.
  14. C++ program to get previous date of given date.
    Given a date in DD, MM and YYYY format, you have to find the previous date.

  15. C++ program to find total number of days in given month of year.
    C++ program to find/print total number of days in a month, in this program, we will input month, year and program will print total number of days in that month, year.
  16. C++ program to set network settings for IPv6 Network in Linux Devices.
    Learn: How to set network settings for IPv6 based Network in Linux Devices? Here, we will learn to set IP address, prefix and Gateway for IPv6 based Network.
  17. C++ program to pad octets of IP Address with Zeros.
    Learn: How to pad IP Address octets with Zeros? In this C++ program, we will learn to pad each octet of an IP Address.
  18. C++ program to set MAC address in Linux Devices.
    Learn: How to set MAC address (physical address) in Linux devices using C++ program, this program is compiled and executed in G++ compiler.
  19. C++ program to get MAC address of Linux based network device.
    Learn: How to get/display MAC address of a Linux based network devices using C++ program? This program is compiled and executed in G++ compiler.
  20. C++ program to set IP address, subnet mask, network gateway in Linux System.
    Learn: How to set network settings like IP Address, Subnet Mask, Network Gateway using C++ program in Linux System using G++ Compiler?
  21. C++ program to check given string is numeric or not.
    Learn: How to check given string is numeric or not? In this C++ program, we are going to learn how to check whether a given a string is numeric or not?

  22. C++ program to check given date is in valid format or not.
    In this C++ program, we will read date and check whether it is in correct format or not?
  23. C++ program to add seconds to the time.
    Learn: How to add seconds in given time and print the time in HH:MM:SS format using C++ program, here we will add seconds in time (with using all conditions like time truncating etc).
  24. C++ program to find Fibonacci number using different methods.
    Learn: What to find fibonacci number using different methods, here you will find multiple methods to find the fibonacci number using C++ programs.
  25. C++ program to find the next greatest number from the same set of digits.
    Learn: How to find next greatest number from the same set of digits using a C++ program?
  26. C++ program to convert number to word (up to four digits only).
    Write a C++ program that will read an integer number (up to four digits) and convert it into words.
  27. C++ program to check whether a string2 can be formed from string1.
    This C++ program reads two Strings (String1 and String2) and checks whether String2 can be formed from String1, by printing ‘Yes' otherwise ‘No'.
  28. C++ program to print a spiral matrix.
    Printing a spiral matrix up to given number using C++ program: A spiral matrix is a matrix consist of natural numbers up to n^2.
  29. C++ program to find the frequency of a character in a string using Count Array.
    This C++ program will read a string and count frequency of a character using count array.
  30. C++ program to find factorial of large numbers using array.
    Learn: How to find factorial of large numbers in C++ using array, this program will explain finding the factorial of large number.
  31. C++ program to generate random alphabets and store them into a character array.
    In this program first we take two character arrays, one to store all the alphabets and other to print random characters into it. To keep it simple we have taken the length as 20.

  32. C++ program to print pattern of stars till N number of rows.
    This C++ program will read total number of rows from the user and print the star pattern till N rows.
  33. C++ Program to print a chessboard pattern.
    This C++ program will print a chessboard like pattern using loops.
  34. C++ Program to print a Pascal Triangle upto N depth.
    This C++ program will read the depth and print the Pascal Trainable up to input depth.
  35. C++ program to reverse a number.
    This program will read and integer number and print its reverse number in C++.
  36. C++ program to sort an array in Descending Order.
    This program will read an integer array (one dimensional array) and sort its elements in descending order.
  37. C++ program to sort an array in Ascending Order.
    This program will read an integer array (one dimensional array) and sort its elements in ascending order.
  38. C++ program to convert lowercase character to uppercase and vice versa.
    This program will read a character and converts lowercase to uppercase and uppercase to lowercase character.
  39. C++ program to check leap year.
    This program will read a year from the user and check whether it is Leap year or not.
  40. C++ Program to check if a number is even using Recursion.
    This program will read a number and check whether it is EVEN or ODD using recursion in C++.
  41. C++ Program to find odd or even number without using modulus operator.
    This program will read an integer number and check whether it is EVEN or ODD without using Modulus (%) Operator.
  42. C++ program to check EVEN or ODD.
    This program will read an integer number and check whether it is EVEN or ODD using three different methods.
  43. C++ program to add two times.
    This program will read two times and calculate their addition (total times in hours, minutes and seconds).
  44. C++ program to display prime numbers.
    This program will read maximum range of the numbers (N) and print all prime numbers between 2 to N.
  45. C++ program to check prime number.
    This program will read an integer number and check whether it is Prime or Not using User Defined Function.

  46. C++ program to find factorial of a number.
    This program will read an integer number and find its factorial using loop and user defined function.
  47. C++ program to display name and age.
    This program will read name and age of the person and display them on separate lines.
  48. C++ program to read a string.
    This program will read a string using cin and cin.getline().
  49. C++ program to add two integer numbers using class.
    This program will read two integer numbers from the user and calculate their addition/sum using class.
  50. C++ program to add two integer numbers using pointers.
    This program will read two integer numbers from the user and calculate their addition/sum using pointer.
  51. C++ program to add two integer numbers using function.
    This program will read two integer numbers from the user and calculate their addition/sum using user defined function.
  52. C++ program to add two integer numbers.
    This program will read two integer numbers from the user and calculate their addition/sum.


Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.