Articles [C & C++]

  Introduction In this article i am writing about pointers, one of the exciting features of C and C++ language. One must say that pointers are the source of much confusion, as well as the cause of many programming errors. Internally almost every...

  EXCEPTION HANDLING An exception is an abnormal condition that arises in a source code sequence at run time. in other words an exception is a run time error and exception handling is a mechanism that solves run time errors by using three...

Files A magnetic disk, known as disk, is a circular piece of metal or plastic, whose surface is coated with a magnetically chargeable substance. Data/information is stored on a disk by magnetizing certain portions of it. This is accomplished by...

DATA STRUCTURE   Introduction In our daily life, we make so many programs, such as make a program to go to cinema, make a program to buy a scooter or make a program to have a dinner at Taj etc. Let us understand the concept of making a program by...

  Data Structures, C and C++ One especially important consideration is the choice of an algorithm description language. This choice actually depends on several factors, such as programmer background, programmer’s ability to express his views,...

Arrays Hello Reader. I am writing this article on Arrays as per my knowledge.  Hope So you will get good knowledge. Introduction The primary variables which we have discussed so far, such as ordinary ints, floats and chars, are capable of...

Strings   The most familiar use of one-dimensional character array is the  ‘string’. A string is defined by a character array terminated by a NULL character. And this NULL character is represented by a ‘\0’. Here you should not confuse between...

  Features of C++ In this article you can read some major features of C++. Data Declaration in C++ C++ provides the facility of declaration of variables with the statements of the program. In contrast to this we have to declare all the...

  Introduction In this my article you can read how to define, declare and call C functions. Before writing of large and complex programs, one should remember that our program should be readable, understandable, easily debugged and easily...

  Creating, Compiling, Linking and Executing C++ Programs Let see how to invoke Turbo C++, how to name our programs, how to compile our programs, how to link our programs and how to execute our programs. Invoking Turbo C++ To start Turbo C++,...

Powered by CjBlog