1. A simple class called Point, with all
necessary functions.
2. Stack implementation as a class.
3. Class for storing a Person's details.
4. Class for storing residential
addresses.
5. Implementing Stack using Class (with
constructor etc).
6. Implementing Queue as a Class.
7. To open a file whose name is passed as
command line argument.
8. Complete implementation of Publication
Class.
9. Extension of publication class.
10. Program to represent a bank account
(implemented as a Class).
11. Modification of previous program to
handle 10 customers.
12. This program imitates the
functionality of the basic data type : int.
13. Class for Library.
14. Program illustrating function
overloading.
15. Overloading the difference operator
for complex arithmetic.
16. Class for storing a person's details.
17. Class with constructor ( for bank
account ).
18. Class to be used as user defined
string type.
19. Function reverseit() that reverses a
string.This file can be used as a header file also ...!
20. Define a class string that could work
as a user defined string type. Include
constructor that will enable us to create an initialised string
string s1;
and also to initialize an obj. with a string constant at the time of creation
like:
string s2("Good Morning");
Include a fn. that adds two strings to make a third string. Note that the
statement s2=s1;
will be perfectly reasonable expr. to copy one string to another.
(still not the end ...)
Now, WAP to test your class to see that it does the ff . tasks:
a. create uninitialized objects.
b. create objects with string constants.
c. concatenate two strings properly
d. Display desired string obj.
21. This program creates a new data type :
time.