CPP

Lecture 1 : INTRODUCTION TO C++

History of C++

Features of C++

Comparision between C and C++

Object Oriented Programming

Concept of Classes and Objects

Example :


class box
{
    int l,b,h;
    void setDimension(int x, int y, int z)
    { 
	//something
    }
    void showDimesion()
    {
        //something
    }
};

//now we can create an object like this
box b1;

Software Development in C++