Friday 12 February 2016

C Program: Implement any database using doubly linked list

/* 1) Insert a record
      2) delete a record
      3) modify a record
      4) Display list forward
      5) Display list backward
*/

Thursday 11 February 2016

C++:2.Using Turbo C++

SETTING UP TURBO C++

Turbo C++ provides a highly automated installation procedure. In general, you need only follow the prompts and answer the questions. However, you can help optimize your system by answering a few of the questions in specific ways.

Sunday 6 September 2015

Self-Healing Computers Could Mean an End to Computer Crashes and Performance Problems

          Wouldn't it be nice if computers could fix themselves? What is you never had to worry about installing or updating software? What if your computer could continually fine-tune its operation to maintain peak performance? What if your computer could fight off viruses and malicious attacks from outsiders? For many people, this sounds too good to be true. Maintenance and security tasks like these can be time consuming and frustrating.

Saturday 29 August 2015

C++:1. THE BIG PICTURE


The Object Oriented Approach
          The fundamental idea behind the object-oriented languages is to combine into a single unit both data and the functions that operate on that data. Such a unit is called an object.
          An object's functions, called member functions in C++, typically provide the only way to access its data. If you want to read a data item in an object, you call a member function in an object. It will read the item and return the value to you. You cant access the data directly. The data is hidden, so it is safe for accidental alteration. Data and its functions are said to be encapsulated into a single entity. Data encapsulation and data hiding are the key terms in the description of object-oriented languages. A C++ program typically consists of a number of objects, which communicate with each other by calling one another's member functions.