Scheme Program to remove 1st occurence of a specified element in a list.

This program is written using Drscheme. Drscheme is a compiler for scheme which is a dialect of LISP. To get a free copy of Drscheme, pls go here http://download.plt-scheme.org/drscheme/ This simple program will remove the first occurence of a specified element from list. for example, you have a list like this  2 3 4 5  and […]

Read More

C++ Program (STL $ OOP)

/*   This program demostrates the concept of inheritance and polymorphism which are parts of the Object Oriented Design of the C++ language. The Program accesses a file named roster.dat which must be placed in the same directory in which this source file is executed. You can create you roster.dat file like this:                                                                                                                                                                                    Open notepad […]

Read More