C++ Tutorials

A Brief History of C++

  • 2007-09-04
  • Comments
  • Jagan
  • 192

Computer languages have undergone dramatic evolution since the first electronic computers were built to assist in telemetry calculations during World War II. Early on, programmers worked with the most primitive computer instructions: machine language. These instructions were represented by long strings of ones and zeroes. Soon, assemblers were invented to map machine instructions to human-readable and -manageable mnemonics, such as ADD and MOV.
Read More

Difference between Procedural, Structured, and Object-Oriented Programming

  • 2007-09-04
  • Comments
  • Jagan
  • 192

Until recently, programs were thought of as a series of procedures that acted upon data. A procedure, or function, is a set of specific instructions executed one after the other. The data was quite separate from the procedures, and the trick in programming was to keep track of which functions called which other functions, and what data was changed. To make sense of this potentially confusing situation, structured programming was created.
Read More

C++ and Object-Oriented Programming

  • 2007-09-04
  • Comments
  • Priya
  • 192

C++ fully supports object-oriented programming, including the four pillars of object-oriented development: encapsulation, data hiding, inheritance, and polymorphism. Encapsulation and Data Hiding When an engineer needs to add a resistor to the device she is creating, she doesn't typically build a new one from scratch. She walks over to a bin of resistors, examines the colored bands that indicate the properties, and picks the one she needs. The resistor is a "black box" as far as the engineer is concerned--she doesn't much care how it does its work as long as it conforms to her specifications; she doesn't need to look inside the box to use it in her design.
Read More

Getting Started with C++

  • 2007-09-04
  • Comments
  • Priya
  • 192

The question inevitably arises: "Since C++ is a superset of C, should I learn C first?" Stroustrup and most other C++ programmers agree. Not only is it unnecessary to learn C first, it may be advantageous not to do so.
Read More

Using Comments in a C++ Program

  • 2007-09-04
  • Comments
  • Priya
  • 192

When you are writing a program, it is always clear and self-evident what you are trying to do. Funny thing, though--a month later, when you return to the program, it can be quite confusing and unclear. I'm not sure how that confusion creeps into your program, but it always does.
Read More

Using functions in C++

  • 2007-09-04
  • Comments
  • Emiley J
  • 192

While main() is a function, it is an unusual one. Typical functions are called, or invoked, during the course of your program. A program is executed line by line in the order it appears in your source code, until a function is reached. Then the program branches off to execute the function. When the function finishes, it returns control to the line of code immediately following the call to the function.
Read More

The if Statement in C++

  • 2007-09-04
  • Comments
  • Priya
  • 193

Normally, your program flows along line by line in the order in which it appears in your source code. The if statement enables you to test for a condition (such as whether two variables are equal) and branch to different parts of your code, depending on the result.
Read More

How to handle Exceptions in C++

  • 2007-09-17
  • Comments
  • Lakshmi
  • 192

In C++, an exception is an object that is passed from the area of code where a problem occurs to the part of the code that is going to handle the problem. The type of the exception determines which area of code will handle the problem, and the contents of the object thrown, if any, may be used to provide feedback to the user.
Read More

Most Viewed Articles on C++

Latest Tutorials

Related Tutorials

Calculating total based on the given quantity and price in C++

Sorting an array of Strings in C++

Matrix using nested for loops in C++

Compute the square root of the sum of the squares of an array in C++

Calculate average using Two-Dimensional Array in C++

Two-Dimensional Array Manipulation in C++

Compiling and Linking Multiple Source Files in C++

Enumerations in C++

for loop in C++

Escape Sequences for Nonprintable Characters in C++

Using the Built-in Arithmetic Types in C++

if in C++

Programming errors a compiler will detect in C++

Comments in C++

Program to add two numbers in C++

Archived Comments

1. give me some logics for programs as soon as possib
View Tutorial          By: nari at 2011-12-07 18:28:03

2. Thanks ...it is really nice .superb site to learn
View Tutorial          By: hari at 2012-12-12 07:41:16

3. int myColor = 0xFFFF00;
paint(Graphics grap

View Tutorial          By: krishna mohan at 2010-02-01 05:22:12

4. hi..dud.......
please help me in my proj

View Tutorial          By: amar usakoyal at 2010-05-25 03:31:16

5. I am looking for a J2ME programmer that can create
View Tutorial          By: Gary Wallis at 2007-10-14 15:35:00

6. The textarea value(finalresult) i want save in Tre
View Tutorial          By: anbalagan.s at 2007-10-17 05:10:19

7. hi, good afternoon
i don,t know how to use

View Tutorial          By: Hemanshu at 2012-01-17 06:49:10

8. give me the code
View Tutorial          By: roger at 2013-10-10 19:44:07

9. Hi,
My problem is that how to connect the r

View Tutorial          By: Twahie at 2011-03-21 05:31:06

10. very nice and good introduction for beginners.
View Tutorial          By: annie at 2011-11-23 06:50:32