Write a program that produces the following output:
CCCCCCC
C + +
C +++++ +++++
C + +
CCCCCCCC++ program to find the factorial of a number using a constructor and destructor (generating the message "you have done it").
Develop a C++ program to design a College Course class includes fields representing department, course number, credit hours, and tuition. Its child, Lab course, includes one more field that holds a lab fee charged in addition to the tuition. Create appropriate functions for these classes, and write a main () function that instantiates and uses object of each class.
Develop a C++ program implementing hierarchical inheritance upon a base class "Employee", and derived classes "Full-time" containing basic salary and allowances for calculating the salary of the employee and
Develop a C++ program implementing hierarchical inheritance upon a base class "Employee", and derived classes "Full-time" containing basic salary and allowances for calculating the salary of the employee and
Write a c++ program to add two objects using binary plus(+) operator overloading .create a class NUM in which contains data members as n and member functions are (i) getNum(int)-get input value(ii)dispNum(int)-print result (iii) operator+(NUM)-perform the addition operation
Develop c++ program with a class complex containing data members real and imaginary .Overload'+' operator and '-: operator to perform complex number addition and subtraction
Develop a C++ program implementing hierarchical inheritance upon a base class "Employee", and derived classes "Full-time" containing basic salary and allowances for calculating the salary of the employee and "Part-time" containing rate_per_day and no. of days worked for calculating the pay.
Develop a C++ program implementing hierarchical inheritance upon a base class "Employee", and derived classes "Full-time" containing basic salary and allowances for calculating the salary of the employee and "Part-time" containing rate_per_day and no. of days worked for calculating the pay.
Create a class Address with house No., street name, city, and pincode as data T members. Use member functions to read and print the member values. Write a main method to demonstrate the Address class